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

19 lines
565 B
PHP

@extends('layouts.base')
@section('body')
<body class="text-black dark:text-inherit">
<x-toast />
<x-error-page
code="500"
title="Wait, this is not cool..."
description="There has been an error with the following error message:"
tone="danger">
@if ($exception->getMessage() !== '')
<div class="error-message">
{!! Purify::clean($exception->getMessage()) !!}
</div>
@endif
</x-error-page>
</body>
@endsection