@auth @endauth
{{ config('app.name', 'Clockshifts') }}
{{ app()->getLocale() === 'ar' ? 'English' : 'العربية' }} @auth {{ auth()->user()->name }} · {{ auth()->user()->role }}
@csrf
@endauth
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('content')
@stack('scripts')