Files
coolify/resources/views/errors/400.blade.php
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

12 lines
363 B
PHP

@extends('layouts.base')
@section('body')
<body class="error-page-body text-black dark:text-inherit">
<x-toast />
<x-error-page
code="400"
title="Bad request"
:description="$exception->getMessage() ?: 'The request could not be understood by the server due to malformed syntax.'" />
</body>
@endsection