@yield('styles')
{{ auth()->user()->name }}
administrator
@if(!empty(auth()->user()->avatar)) avatar @else {{ strtoupper(substr(auth()->user()->name, 0, 1)) }} @endif
@yield('title', 'Admin Dashboard')
@yield('page_subtitle', 'Admin operations styled to match the user dashboard shell.')
@if(session('success') || session('status'))
{{ session('success') ?? session('status') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
Please fix the errors below:
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif @yield('content')
@yield('scripts')