@if (App::getLocale() == 'ar') {{ LaravelLocalization::getCurrentLocaleName() }}
@else {{ LaravelLocalization::getCurrentLocaleName() }}
@endif
@foreach(LaravelLocalization::getSupportedLocales() as $localeCode => $properties)
{{ $properties['native'] }}
@endforeach
{{ config('app.name', 'School Management System' )}}
@guest
{{ __('auth.login') }}
@if (Route::has('register'))
{{ __('auth.register') }}
@endif @else
{{ Auth::user()->name }}
{{ __('auth.Logout') }}
@csrf
@endguest
@yield('content')