12 lines
264 B
PHP
12 lines
264 B
PHP
@extends('errors.general')
|
|
|
|
@section('title', '404 Not Found')
|
|
|
|
@section('content')
|
|
<h1>404 Not Found
|
|
@include('setup.wizard.language')
|
|
</h1>
|
|
|
|
<p>@lang('errors.exception.detail', ['msg' => $exception->getMessage() ?: trans('errors.http.msg-404')])</p>
|
|
@endsection
|