13 lines
408 B
PHP
13 lines
408 B
PHP
@extends('errors.errors_layout')
|
|
|
|
@section('title')
|
|
403 - Forbidden
|
|
@endsection
|
|
|
|
@section('error-content')
|
|
<h2 class="headline text-danger"> 403 Forbidden</h2>
|
|
<p>Access to this resource on the server is denied</p>
|
|
<a class="btn btn-primary" href="{{ route('admin.dashboard') }}">Back to Home</a>
|
|
<a class="btn btn-primary" href="{{ route('admin.login') }}">Login Again !</a>
|
|
@endsection
|