Corrected Uuid Trait Errors

This commit is contained in:
Kyle
2017-08-12 16:46:05 +00:00
parent 738cd15db4
commit afc3e7643d
4 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
@extends('layouts.default.app')
@section('content')
<div class="container registered-page">
<h3>Unauthorized</h3>
<p>Well, this is embarrassing, you are not authorized to access or perform this function. Click <a href="{{ url()->previous() }}">here</a> to go back to the home page.</p>
</div>
@endsection

View File

@@ -0,0 +1,10 @@
@extends('layouts.default.app')
@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