@yield('head') @if(\Session::has('flash_message'))

{!! \Session::get('flash_message') !!}

@endif
@if(Session::has('message'))

{{ Session::get('message') }}

@endif
{{-- Main page content will be yielded here --}} @yield('content')
{{-- Yield any page specific JS files or anything else you might want at the end of the body --}} @yield('body')