Files
Epicnabbo-Catalogus-Updated…/cms update/resources/themes/atom/views/banned.blade.php
T
Remco b67e0ec2b9 🆙 Add fixed cms 🆙
2026-02-02 19:30:21 +01:00

47 lines
2.0 KiB
PHP

<x-app-layout>
@push('title', __('Banned'))
<div class="col-span-12 flex justify-center dark:text-gray-100">
<div class="space-y-4 lg:w-1/2">
<div class="w-full rounded-md bg-red-500 p-2 text-center text-white">
{{ __('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-gray-800">
<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="{{ 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>