2023-09-06 10:07:34 +00:00
|
|
|
@extends('layouts.base')
|
2024-03-26 09:44:52 +00:00
|
|
|
<div class="flex flex-col items-center justify-center h-full">
|
|
|
|
|
<div>
|
|
|
|
|
<p class="font-mono font-semibold text-7xl dark:text-warning">401</p>
|
|
|
|
|
<h1 class="mt-4 font-bold tracking-tight dark:text-white">You shall not pass!</h1>
|
2025-08-12 13:01:58 +00:00
|
|
|
<p class="text-base leading-7 dark:text-neutral-400 text-black">You don't have permission to access this page.
|
2024-03-26 09:44:52 +00:00
|
|
|
</p>
|
2025-08-22 12:00:01 +00:00
|
|
|
<div class="flex items-center mt-10 gap-x-2">
|
2025-12-17 12:25:27 +00:00
|
|
|
<a href="{{ url()->previous() }}">
|
2025-08-22 12:00:01 +00:00
|
|
|
<x-forms.button>Go back</x-forms.button>
|
|
|
|
|
</a>
|
2025-12-17 11:09:13 +00:00
|
|
|
<a href="{{ route('dashboard') }}" {{ wireNavigate() }}>
|
2025-08-22 12:00:01 +00:00
|
|
|
<x-forms.button>Dashboard</x-forms.button>
|
2024-03-26 09:44:52 +00:00
|
|
|
</a>
|
2024-11-12 14:18:48 +00:00
|
|
|
<a target="_blank" class="text-xs" href="{{ config('constants.urls.contact') }}">Contact
|
2024-03-26 09:44:52 +00:00
|
|
|
support
|
|
|
|
|
<x-external-link />
|
|
|
|
|
</a>
|
2023-09-06 10:07:34 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|