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

23 lines
1 KiB
PHP
Raw 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>
2025-01-06 17:22:12 +00:00
<p class="mt-2 text-lg leading-7 text-neutral-300">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
2025-01-06 17:16:30 +00:00
<div class="flex items-center mt-10 gap-6">
2025-01-06 17:05:58 +00:00
<a href="/">
2024-03-26 09:44:52 +00:00
<x-forms.button>Go back home</x-forms.button>
</a>
2025-01-06 17:16:30 +00:00
<a target="_blank" class="text-sm hover:text-neutral-300 flex items-center gap-1" 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>