@include('partials.turbo') @include('partials.theme-vars') @php try { $logoUrl = \App\Support\Branding::url(); } catch (\Throwable) { $logoUrl = null; } @endphp @stack('styles') @php $hotel = \App\Models\Hotel::query()->first(); @endphp
{{ $hotel?->name ?? config('app.name', 'HotelPlus') }}
{{ now()->format('l, M j, Y') }}
{{ auth()->user()?->name }}
@csrf
@if(session('success')) {{ session('success') }} @endif @if(session('warning')) {{ session('warning') }} @endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('content')
@stack('scripts')