2018-08-29 15:18:15 +00:00
|
|
|
{{-- \resources\views\errors\403.blade.php --}}
|
2018-08-06 12:30:51 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class='col-lg-4 col-lg-offset-4'>
|
2018-08-29 15:18:15 +00:00
|
|
|
<h1><center>403<br>
|
2018-08-06 12:30:51 +00:00
|
|
|
ACCESS DENIED</center></h1>
|
2019-04-09 17:05:03 +00:00
|
|
|
<a href="{{ URL::previous() }}" class="btn btn-default">Back</a>
|
2018-08-06 12:30:51 +00:00
|
|
|
<h2>{{ $exception->getMessage() }}</h2>
|
2019-04-09 17:05:03 +00:00
|
|
|
|
2018-08-06 12:30:51 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
|
|
|
|
|