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

12 lines
347 B
PHP

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