15 lines
318 B
PHP
15 lines
318 B
PHP
@extends('layouts.auth')
|
|
|
|
@section('htmlheader_title')
|
|
403
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-6 m-auto">
|
|
<h3>403 - Not allowed</h3>
|
|
<p>Sorry, it appears you are not allowed to do that.</p>
|
|
<p><a href="{{ url('/') }}" class="goback">Home</a></p>
|
|
</div>
|
|
</div>
|
|
@endsection |