@yield('head')
@include('partials/notifications')
@if(Setting::get('app-logo', '') !== 'none')
@endif
{{ Setting::get('app-name', 'BookStack') }}
Books
@if(isset($currentUser) && $currentUser->can('settings-update'))
Settings
@endif @if(!isset($signedIn) || !$signedIn)
Sign In
@endif
@if(isset($signedIn) && $signedIn)
{{ $currentUser->name }}
Edit Profile
Logout
@endif
@yield('content')
Back to top
@yield('bottom') @yield('scripts')