Added 404/419 status pages
This commit is contained in:
15
resources/views/errors/404.blade.php
Normal file
15
resources/views/errors/404.blade.php
Normal 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
|
15
resources/views/errors/419.blade.php
Normal file
15
resources/views/errors/419.blade.php
Normal 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
|
Reference in New Issue
Block a user