mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-27 20:30:37 +00:00
12 lines
347 B
PHP
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
|