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')
|
2019-09-13 11:28:28 +00:00
|
|
|
<section class="normal dataset u-full-width">
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<h1>
|
|
|
|
<center>403<br>
|
|
|
|
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>
|
2019-09-13 11:28:28 +00:00
|
|
|
</section>
|
2018-08-06 12:30:51 +00:00
|
|
|
|
2019-09-13 11:28:28 +00:00
|
|
|
@endsection
|