Files
coolify/resources/views/errors/500.blade.php
T
Andras Bacsai e4fa2b6964 fix(ui): polish mobile layouts, error pages, and volume backups
Keep error pages full-viewport, lift the unsaved bar above the
mobile keyboard, make status/heading layouts stack cleanly on small
screens, route service DB backups to volume-backups, and tighten
volume backup grid/forms. Cover with feature tests.
2026-08-06 21:29:26 +02:00

19 lines
581 B
PHP

@extends('layouts.base')
@section('body')
<body class="error-page-body 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