@yield('page_title', 'Dashboard')
{{ auth()->user()->name }}
{{ auth()->user()->branch?->name ?? 'All branches' }}
{{ strtoupper(substr(auth()->user()->name,0,1)) }}
@csrf
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if(session('warning'))
{{ session('warning') }}
@endif @if($errors->any())
Please correct the following:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('content')
@stack('scripts')