Files
2026-05-09 17:32:17 +02:00

47 lines
1.3 KiB
PHP
Executable File

<x-app-layout>
@push('title', __('Banned'))
<div class="col-span-12 flex justify-center text-[var(--color-text)]">
<div class="space-y-4 lg:w-1/2">
<div class="w-full rounded-md bg-red-500 p-2 text-center text-[var(--color-text)]">
{{ __('It seems like you are banned off :hotel', ['hotel' => setting('hotel_name')]) }}
</div>
<div class="rounded-md p-2 shadow-sm bg-white dark:bg-[var(--color-surface)]">
<div class="flex justify-between">
<div class="flex flex-col px-1">
<div class="max-w-[380px]">
<p>
<strong>{{ __('Ban type:') }}</strong> {{ $ban->type }}
</p>
<p>
<strong>{{ __('Ban reason:') }}</strong> {{ $ban->ban_reason }}
</p>
<p>
<strong>{{ __('Ban expiration:') }}</strong> {{ date('Y/m/d', $ban->ban_expire) }}
</p>
</div>
<div class="mt-4 max-w-[380px]">
<p class="mb-4">
{{ __('If you believe this is a mistake, please reach out to one of our staff members through our Discord server!') }}
</p>
<a href="{{ is_array(setting('discord_invitation_link')) ? '' : setting('discord_invitation_link') }}" target="_blank">
<x-form.primary-button>
{{ __('Join discord') }}
</x-form.primary-button>
</a>
</div>
</div>
<div class="mr-8 hidden items-center lg:flex">
<img src="{{ asset('assets/images/angry_frank.png') }}" alt="">
</div>
</div>
</div>
</div>
</div>
</x-app-layout>