@stack('styles')
@auth
Proj Mgr
Dashboard
Projects
Templates
{{ strtoupper(substr(auth()->user()->name, 0, 1)) }}
{{ auth()->user()->name }}
{{ auth()->user()->email }}
@if(auth()->user()->role)
Role: {{ auth()->user()->role }}
@endif
@csrf
Logout
@endauth @if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@yield('content')
@stack('scripts')