phpvms/resources/views/layouts/default/errors/404.blade.php
2018-05-21 09:57:10 -05:00

15 lines
391 B
PHP

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