Files
expense/resources/views/errors/403.blade.php
T
2024-12-02 01:18:34 +07:00

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