2024-11-07 11:32:23 +00:00
|
|
|
@extends('layouts.base')
|
2026-08-03 21:11:54 +00:00
|
|
|
|
|
|
|
|
@section('body')
|
2026-08-06 19:29:26 +00:00
|
|
|
<body class="error-page-body text-black dark:text-inherit">
|
2026-08-03 21:11:54 +00:00
|
|
|
<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
|