@yield('styles')
@if(Session::has('success'))
{{Session::get('success')}}
@endif @if(Session::has('info'))
{{Session::get('info')}}
@endif
{{ config('app.name', 'Laravel') }}
@auth
Search
@endauth
@guest
{{ __('Login') }}
@else @if(Auth::user()->admin)
Admin
All Users
New User
All Exams
Applied Post
All Trashed
@endif
Posts
My Listing
Add Exam
View Trashed
{{ Auth::user()->name }}
{{ __('Logout') }}
My Profile
@csrf
@endguest
@yield('content')
@yield('scripts')