@vite(['resources/css/app.css', 'resources/js/app.js']) {{-- Impersonation banner --}} @if(session('impersonating'))
Logged in as {{ session('impersonating.name') }} Return to Admin
@endif {{-- Disabled account banner --}} @auth @if(Auth::user()->status === 'disabled')
Your account has been disabled. Please contact {{ explode(',', env('ADMIN_EMAIL', ''))[0] }} for more info.
@endif @endauth {{-- Missing PayPal banner --}} @auth @if(!Auth::user()->paypal_email)
Specify your PayPal account on the Settings page to receive payments.
@endif @endauth
{{-- ── Sidebar ── --}} @include('layouts.navigation') {{-- ── Mobile overlay ── --}}
{{-- ── Main area ── --}}
{{-- Mobile top bar --}}
{{ config('app.name', 'Laravel') }}
{{-- Page heading --}} @isset($header)
{{ $header }}
@endisset {{-- Page content --}}
{{ $slot }}