@php
// Background image path - can be configured from settings/database later
$bgImagePath = config('hotel.auth_background_path', 'images/auth-background.jpg');
$bgImageExists = file_exists(public_path($bgImagePath));
@endphp
{{-- Background Image --}}
@if($bgImageExists)
@else
{{-- Fallback: Gradient background when no image is uploaded --}}
@endif
{{-- Overlay for better text readability --}}
{{-- Optional: Secondary logo for right panel (white version) --}}
@php
$logoWhitePath = config('hotel.logo_white_path', 'images/logo-white.png');
$logoWhiteExists = file_exists(public_path($logoWhitePath));
@endphp
@if($logoWhiteExists)
 }})
@endif
{{-- Heading --}}
{{ $promoTitle ?? config('hotel.auth.promo_title', 'Effortlessly manage your hotel operations.') }}
{{-- Subtitle --}}
{{ $promoSubtitle ?? config('hotel.auth.promo_subtitle', 'Access your dashboard to manage reservations, guests, and more.') }}
{{-- Features List --}}