@yield("head")
@if(Session::get('flash_message'))
{{ Session::get('flash_message') }}
@endif
@if(Auth::check())
Home
|
All Games
|
Add New Game
|
Log Out {{ Auth::user()->email; }}
@else
Sign up
or
Log In
@endif
@yield("content")
Github