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

@auth
{{ auth()->user()->first_name }}
@csrf
@endauth
@if(session('success'))
{{ session('success') }}
@endif @if(session('warning'))
{{ session('warning') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @yield('content')