@yield('styles')
JMHP
.
pro
{{ __('Services') }}
{{ __('Forfaits') }}
{{ __('Partenaires') }}
{{ __('Blog') }}
{{ __('Contact') }}
{{ strtoupper(app()->getLocale()) }}
EN
FR
@guest @if (Route::has('login'))
{{ __('Connexion') }}
@endif @if (Route::has('register'))
{{ __('Inscription') }}
@endif @else
{{ Auth::user()->name }}
{{ __('Tableau de bord') }}
{{ __('Profil') }}
@if(Auth::user()->is_admin)
{{ __('Admin') }}
@endif
@csrf
{{ __('Déconnexion') }}
@endguest
@yield('content')
@yield('scripts')