@yield('page-title','Dashboard')
{{ strtoupper(substr(auth()->user()->name,0,1)) }}
{{ auth()->user()->name }}
{{ ucfirst(str_replace('_',' ', auth()->user()->role)) }}
@csrf
Logout
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif @yield('content')