@include('partials.favicon') {{ $title ?? 'Hosting Panel' }} - Ladill @vite(['resources/css/app.css', 'resources/js/app.js']) @php $canViewAccountDetails = auth()->check() && auth()->user()->can('viewAccount', $account); $exitUrl = $canViewAccountDetails ? route('hosting.accounts.show', $account) : route('hosting.single-domain'); @endphp
{{-- Mobile sidebar overlay --}}
{{-- Sidebar --}} {{-- Main content --}}
{{-- Top bar --}}

{{ $header ?? 'Hosting Panel' }}

@unless ($canViewAccountDetails)

Developer access

@endunless
Exit Panel
{{-- Flash messages --}} @include('partials.flash') {{-- Expired Account Banner --}} @if ($account->isExpired() && $account->isInGracePeriod())

Account expired. Your site is offline. Files are preserved until {{ $account->gracePeriodEndsAt()->format('M d, Y') }}. Renew now

@endif {{-- Page content --}}
{{ $slot }}
@stack('scripts') @include('partials.confirm-prompt')