phpvms/resources/views/layouts/default/errors/404.blade.php

13 lines
324 B
PHP
Raw Normal View History

@extends('app')
2018-05-19 03:42:47 +08:00
@section('title', __('errors.404.title'))
2017-08-13 00:46:05 +08:00
@section('content')
<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