14 lines
306 B
PHP
14 lines
306 B
PHP
<!DOCTYPE html>
|
|
<html itemscope itemtype="https://schema.org/WebSite" lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
@include('partials.head')
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<h1 class="page-title">Error</h1>
|
|
<p>{{ $message }}</p>
|
|
</header>
|
|
|
|
</body>
|
|
|
|
</html>
|