@push('title', __('Welcome to the best hotel on the web!'))
{{-- Left sidebar --}}
{{-- Login card --}}
@csrf
@if (setting('cloudflare_turnstile_enabled')) @endif
{{-- Register button --}} {{-- Recent Users --}} @if($onlineUsers->isNotEmpty())

{{ __('Recent Users') }}

@foreach($onlineUsers as $user)
{{ $user->username }}
@endforeach
@endif
{{-- Right main content --}}
{{-- Latest Photos --}} @if($photos->isNotEmpty())

{{ __('Latest Photos') }}

@forelse ($photos as $photo)
Photo by {{ $photo->user?->username ?? 'Unknown' }}
{{ $photo->user?->username ?? 'Unknown' }}

{{ $photo->user?->username ?? __('Unknown') }}

@empty

{{ __('No photos available') }}

@endforelse
@endif {{-- Latest News --}}

{{ __('Latest News') }}

@forelse($articles as $article) @empty
@endforelse
@push('javascript') @endpush