@stack('styles')

@yield('page_title', 'Dashboard')

{{ strtoupper(substr(Auth::user()->name, 0, 1)) }}
@hasSection('breadcrumb')
@endif @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if(session('warning'))
{{ session('warning') }}
@endif @if($errors->any())
Please fix the following errors:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@yield('content')
@stack('scripts')