update patch 1
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
@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
|
||||
@@ -0,0 +1,12 @@
|
||||
@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
|
||||
@@ -0,0 +1,12 @@
|
||||
@extends('errors.errors_layout')
|
||||
|
||||
@section('title')
|
||||
500 - Internal Server Error
|
||||
@endsection
|
||||
|
||||
@section('error-content')
|
||||
<h2 class="headline text-danger">500 - Internal Server Error</h2>
|
||||
<p>This page isn't working, We will work on fixing that right away. !</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
|
||||
@@ -0,0 +1,37 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<title>@yield('title')</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="shortcut icon" type="image/png" href="assets/images/icon/favicon.ico">
|
||||
@include('layouts.partials.styles')
|
||||
@yield('styles')
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!-- preloader area start -->
|
||||
<div id="preloader">
|
||||
<div class="loader"></div>
|
||||
</div>
|
||||
<!-- preloader area end -->
|
||||
<!-- error area start -->
|
||||
<section class="content">
|
||||
<div class="error-page">
|
||||
<div class="container">
|
||||
<div class="error-content">
|
||||
@yield('error-content')
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- error area end -->
|
||||
|
||||
@include('layouts.partials.scripts')
|
||||
@yield('scripts')
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user