2017-08-13 00:46:05 +08:00
|
|
|
@extends('layouts.default.app')
|
2017-12-24 01:17:29 +08:00
|
|
|
@section('title', 'not found')
|
2017-08-13 00:46:05 +08:00
|
|
|
@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
|