PHP Classes

File: resources/views/errors/403.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Devs Hunt   resources/views/errors/403.blade.php   Download  
File: resources/views/errors/403.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Devs Hunt
Manage courses and student enrolment
Author: By
Last change:
Date: 1 month ago
Size: 513 bytes
 

Contents

Class file image Download
@extends('errors.layout')

@section('title')
    403 - Access Denied
@endsection

@section('error-content')
    <div class="text-center">
        <div class="error mx-auto" data-text="403">403</div>
        <p>Access to this resource on the server is denied</p>
        <hr>
        <p class="mt-2">
            {{ $exception->getMessage() }}
        </p>
        <a href="{{ route('admin.dashboard') }}">Back to Dashboard</a>
        <a href="{{ route('admin.login') }}">Login Again !</a>
    </div>
@endsection