18 lines
438 B
PHP
18 lines
438 B
PHP
|
@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
|