2018-03-12 07:00:42 +08:00
|
|
|
@extends('app')
|
2018-05-19 03:42:47 +08:00
|
|
|
@section('title', __('errors.404.title'))
|
2018-02-04 08:18:09 +08:00
|
|
|
|
2017-08-13 00:46:05 +08:00
|
|
|
@section('content')
|
2018-05-19 03:42:47 +08:00
|
|
|
<div class="container registered-page">
|
|
|
|
<h3>@lang('errors.404.title')</h3>
|
|
|
|
<p>
|
|
|
|
{!! str_replace(':link', config('app.url'), __('errors.404.message')).'<br />' !!}
|
|
|
|
{{ $exception->getMessage() }}
|
|
|
|
</p>
|
|
|
|
</div>
|
2017-08-13 00:46:05 +08:00
|
|
|
@endsection
|