coolify/resources/views/errors/500.blade.php

27 lines
1.2 KiB
PHP
Raw Permalink Normal View History

@extends('layouts.base')
2025-01-06 17:16:30 +00:00
<div class="flex items-center justify-center min-h-screen">
<div class="w-full max-w-3xl px-8">
<p class="font-mono font-semibold text-red-500 text-[200px] leading-none">500</p>
<h1 class="text-3xl font-bold tracking-tight dark:text-white">Wait, this is not cool...</h1>
<p class="mt-2 text-lg leading-7 dark:text-neutral-400 text-black">There has been an error with the following
error message:</p>
2024-03-26 09:44:52 +00:00
@if ($exception->getMessage() !== '')
2025-01-06 17:32:05 +00:00
<div class="mt-6 text-sm text-red-500">
2025-01-07 12:47:16 +00:00
{!! Purify::clean($exception->getMessage()) !!}
2025-01-06 16:49:55 +00:00
</div>
2024-03-26 09:44:52 +00:00
@endif
<div class="flex items-center mt-10 gap-x-2">
<a href="{{ url()->previous() }}">
<x-forms.button>Go back</x-forms.button>
</a>
<a href="{{ route('dashboard') }}" {{ wireNavigate() }}>
<x-forms.button>Dashboard</x-forms.button>
2024-03-26 09:44:52 +00:00
</a>
<a target="_blank" class="text-xs" href="{{ config('constants.urls.contact') }}">Contact
support
2025-01-06 17:05:58 +00:00
<x-external-link />
2024-03-26 09:44:52 +00:00
</a>
</div>
</div>
</div>