@if (Route::has('login'))
@auth
Home
@else
Log in
@if (Route::has('register'))
Register
@endif @endauth
@endif
{{--Alert --}}
@if(Session::has('success_message'))
{{ Session::get('success_message') }}
@endif @if(Session::has('error_message'))
{{ Session::get('error_message') }}
@endif
{{--Alert --}} @yield('content')
Developed by Baizid MD Ashadzzaman
Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})