tethys/resources/views/errors/403.blade.php

18 lines
418 B
PHP
Raw Normal View History

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')
<section class="normal dataset u-full-width">
<div class="container">
<h1>
<center>403<br>
ACCESS DENIED</center>
</h1>
<a href="{{ URL::previous() }}" class="btn btn-default">Back</a>
2018-08-06 12:30:51 +00:00
<h2>{{ $exception->getMessage() }}</h2>
2018-08-06 12:30:51 +00:00
</div>
</section>
2018-08-06 12:30:51 +00:00
@endsection