Corrected Uuid Trait Errors
This commit is contained in:
parent
738cd15db4
commit
afc3e7643d
3
.gitignore
vendored
3
.gitignore
vendored
@ -47,3 +47,6 @@ phpvms_next.iml
|
||||
public/info.php
|
||||
|
||||
local.conf.php
|
||||
|
||||
# Error Logs
|
||||
error_log
|
||||
|
7
resources/views/errors/401.blade.php
Normal file
7
resources/views/errors/401.blade.php
Normal 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
|
10
resources/views/errors/404.blade.php
Normal file
10
resources/views/errors/404.blade.php
Normal 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
|
Loading…
Reference in New Issue
Block a user