13 lines
395 B
PHP
13 lines
395 B
PHP
@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
|