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

22 lines
897 B
PHP
Raw Normal View History

@extends('layouts.base')
<div class="h-full p-4">
<div>
<p class="font-mono font-semibold text-red-500 text-9xl">500</p>
2025-01-06 17:05:58 +00:00
<h1 class="mt-4 font-bold tracking-tight dark:text-white">Wait, this is not cool...</h1>
<p class="text-base leading-7 text-neutral-300">There has been an error, we are working on it.</p>
2024-03-26 09:44:52 +00:00
@if ($exception->getMessage() !== '')
<div class="mt-6 text-xs text-red-500 whitespace-pre-wrap">
2025-01-06 16:55:37 +00:00
Error: {!! $exception->getMessage() !!}
2025-01-06 16:49:55 +00:00
</div>
2024-03-26 09:44:52 +00:00
@endif
<div class="mt-10 space-x-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:05:58 +00:00
<a target="_blank" class="text-xs" href="{{ config('constants.urls.contact') }}">Contact
support
<x-external-link />
2024-03-26 09:44:52 +00:00
</a>
</div>
</div>
2025-01-06 17:05:58 +00:00
</div>