@vite(['resources/css/app.css','resources/js/app.js']) {{-- ── Sidebar ── --}} {{-- ── Main ── --}}
{{-- Topbar --}}
{{-- Left links --}} My Tickets Changelogs
{{-- Currency switcher --}} @php $uc = user_currency(); $ucCode = $uc?->code ?? setting('default_currency','USD'); $ucSymbol = $uc?->symbol ?? setting('currency_symbol','$'); @endphp
{{-- Bell --}} {{-- Volume / Sound --}} {{-- Sun / Theme --}}
{{-- User chip + dropdown --}}
{{-- Dropdown menu --}}
{{-- Currency changed toast --}} @if(session('currency_changed'))
{{ session('currency_changed') }}
@endif {{-- Flash — single source of truth, handles all flash types ── --}} @if(session('success') || session('password_success'))
{{ session('success') ?? session('password_success') }}
@endif @if(session('error') || $errors->any())
{{ session('error') ?? $errors->first() }}
@endif
@yield('content')