mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 04:23:34 +00:00
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.
19 lines
581 B
PHP
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
|