@vite(['resources/css/app.css', 'resources/js/app.js'])
@include('partials.header')
@yield('content')
@include('partials.footer')
@include('partials.login-modal')
@php
$conquerRoutes = [
'home' => route('home'),
'rankings' => route('rankings'),
'downloads' => route('downloads'),
'register' => route('register'),
'support' => route('support'),
'account' => route('account'),
'forgot' => route('forgot'),
'change-password' => route('change-password'),
'change-bank-password' => route('change-bank-password'),
'tickets' => route('tickets'),
];
@endphp
@stack('scripts')