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

15 lines
391 B
PHP
Raw Normal View History

@extends('app')
2018-05-18 22:02:49 +08:00
@section('title', trans('frontend.errors.404title'))
2017-08-13 00:46:05 +08:00
@section('content')
<div class="container registered-page">
2018-05-18 22:02:49 +08:00
<h3>@lang('frontend.errors.404header')</h3>
<p>
2018-05-18 22:02:49 +08:00
@foreach(trans('frontend.errors.404message') as $line)
{!! str_replace(':link', config('app.url'), $line).'<br />' !!}
@endforeach
{{ $exception->getMessage() }}
</p>
2017-08-13 00:46:05 +08:00
</div>
@endsection