@vite(['resources/css/app.scss', 'resources/js/app.js']) @yield('styles')
{{-- ════════════════════════════════════════ SIDEBAR (appears on the RIGHT in RTL because it is the first flex child) ════════════════════════════════════════ --}} {{-- ════════════════════════════════════════ MAIN BODY ════════════════════════════════════════ --}}
{{-- Topbar --}}

@yield('page-title', 'لوحة التحكم')

{{-- Desktop: link to public site --}} الموقع العام {{-- Mobile: user avatar + logout --}}
{{ mb_substr(auth()->user()?->name ?? 'م', 0, 1) }}
@csrf
{{-- Flash Messages --}}
@if(session('success')) @endif @if(session('error')) @endif
{{-- Page Content --}}
@yield('content')
{{-- /app-body --}}
{{-- /app-layout --}} {{-- Mobile sidebar overlay --}} {{-- ══ MOBILE BOTTOM NAVIGATION ═══════════════════════════════════════════════ --}} @stack('scripts')