@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
{{ Setting::get('app-name', 'BookStack') }}
@yield('header-buttons')
@if(isset($signedIn) && $signedIn)
{{ $currentUser->name }}
Logout
@endif
@yield('content')