Files
expense/resources/views/errors/404.blade.php
T

13 lines
395 B
PHP
Raw Normal View History

2024-12-02 01:18:34 +07:00
@extends('errors.errors_layout')
@section('title')
404 - Page Not Found
@endsection
@section('error-content')
<h2 class="headline text-danger">404 - Not Found</h2>
<p>Sorry, This Page Not Found !</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