@yield('page-title', 'Dashboard')

@yield('page-subtitle', 'Welcome back, ' . (auth('admin')->user()->name ?? 'Admin'))

@if(isset($stats['unread_messages']) && $stats['unread_messages'] > 0)
{{ $stats['unread_messages'] }}
@endif

{{ now()->format('D, M j Y') }}

{{ now()->format('g:i A') }}

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @yield('content')
@stack('scripts')