@yield('head')
@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
@if(Setting::get('app-logo', '') !== 'none')
@endif
{{ Setting::get('app-name', 'BookStack') }}
Books
@if($currentUser->can('settings-update'))
Settings
@endif @if(!$signedIn)
Sign In
@endif
@if($signedIn)
{{ $currentUser->name }}
Edit Profile
Logout
@endif
@yield('content')
@yield('bottom')