Added 404/419 status pages

This commit is contained in:
Deon George
2021-07-17 22:07:20 +10:00
parent bd85f8b055
commit 7bb3e12f66
3 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
@extends('layouts.auth')
@section('htmlheader_title')
404
@endsection
@section('content')
<div class="row">
<div class="col-6 m-auto">
<h3>404 - Not found?</h3>
<p>Sorry, I cant find what you are looking for. Try again?</p>
<p><a href="{{ url('/') }}" class="goback">Home</a></p>
</div>
</div>
@endsection

View File

@@ -0,0 +1,15 @@
@extends('layouts.auth')
@section('htmlheader_title')
419
@endsection
@section('content')
<div class="row">
<div class="col-6 m-auto">
<h3>419 - Page expired</h3>
<p>That page has expired, you'll need to reload it and submit it again.</p>
<p><a href="{{ url('/') }}" class="goback">Home</a><a class="link float-end" href="{{ request()->url() }}">Reload</a></p>
</div>
</div>
@endsection