phpvms/resources/views/layouts/default/errors/404.blade.php
2017-12-23 11:17:29 -06:00

12 lines
351 B
PHP

@extends('layouts.default.app')
@section('title', 'not found')
@section('content')
<div class="container registered-page">
<h3>Page Not Found</h3>
<p>Well, this is embarrassing, the page you requested does not exist. Click <a href="{{ url()->previous() }}">here</a> to go back to the home page.
{{ $exception->getMessage() }}
</p>
</div>
@endsection