CSS fixes, BS5 doesnt have ml/mr,pl/pr. Fix remember me. Style consistencies. Added Error 500 page.

This commit is contained in:
Deon George
2021-07-24 14:12:10 +10:00
parent bbbb06d0a2
commit 29a707831e
15 changed files with 55 additions and 30 deletions

View File

@@ -0,0 +1,18 @@
@extends('layouts.auth')
@section('htmlheader_title')
500
@endsection
@section('content')
<div class="row">
<div class="col-6 m-auto">
<h3>500 - Server Error?</h3>
<p>Sorry, something went bad. Try again?</p>
<span class="mb-3 btn btn-sm btn-danger" role="alert" style="text-align: left;">
{{ $exception->getMessage() }}
</span>
<p><a href="{{ url('/') }}" class="goback">Home</a></p>
</div>
</div>
@endsection