first commit
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
@extends('errors.minimal')
|
||||
|
||||
@section('title', __('Unauthorized'))
|
||||
@section('code', '401')
|
||||
@section('message', __('Unauthorized'))
|
||||
@@ -0,0 +1,5 @@
|
||||
@extends('errors.minimal')
|
||||
|
||||
@section('title', __('Payment Required'))
|
||||
@section('code', '402')
|
||||
@section('message', __('Payment Required'))
|
||||
@@ -0,0 +1,5 @@
|
||||
@extends('errors.minimal')
|
||||
|
||||
@section('title', __('Forbidden'))
|
||||
@section('code', '403')
|
||||
@section('message', __($exception->getMessage() ?: 'Forbidden'))
|
||||
@@ -0,0 +1,58 @@
|
||||
@extends('layouts.master-auth')
|
||||
@section('title')
|
||||
404
|
||||
@endsection
|
||||
@section('css')
|
||||
<!-- extra css -->
|
||||
@endsection
|
||||
@section('content')
|
||||
<div class="w-100">
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-6">
|
||||
<div class="auth-card mx-lg-3">
|
||||
<div class="card border-0 mb-0">
|
||||
<div class="card-body text-center p-4">
|
||||
|
||||
<div class="text-center px-sm-5 mx-5">
|
||||
<img src="{{ URL::asset('build/images/error400.png') }}" class="img-fluid" alt="">
|
||||
</div>
|
||||
<div class="mt-4 text-center pt-3">
|
||||
<div class="position-relative">
|
||||
<h4 class="fs-18 error-subtitle text-uppercase mb-0">Opps, page not found</h4>
|
||||
<p class="fs-15 text-muted mt-3">It will be as simple as Occidental in fact,
|
||||
it will Occidental to an English person</p>
|
||||
<div class="mt-4">
|
||||
<a href="index" class="btn btn-primary"><i
|
||||
class="mdi mdi-home me-1"></i>Back to home</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--end col-->
|
||||
</div>
|
||||
<!--end row-->
|
||||
</div>
|
||||
<!--end container-->
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="text-center">
|
||||
<p class="mb-0 text-muted">©
|
||||
<script>
|
||||
document.write(new Date().getFullYear())
|
||||
</script> Toner. Crafted with <i class="mdi mdi-heart text-danger"></i> by
|
||||
Themesbrand
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
@endsection
|
||||
@@ -0,0 +1,5 @@
|
||||
@extends('errors.minimal')
|
||||
|
||||
@section('title', __('Page Expired'))
|
||||
@section('code', '419')
|
||||
@section('message', __('Page Expired'))
|
||||
@@ -0,0 +1,5 @@
|
||||
@extends('errors.minimal')
|
||||
|
||||
@section('title', __('Too Many Requests'))
|
||||
@section('code', '429')
|
||||
@section('message', __('Too Many Requests'))
|
||||
@@ -0,0 +1,58 @@
|
||||
@extends('layouts.master-auth')
|
||||
@section('title')
|
||||
500
|
||||
@endsection
|
||||
@section('css')
|
||||
<!-- extra css -->
|
||||
@endsection
|
||||
@section('content')
|
||||
<div class="w-100">
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-lg-6">
|
||||
<div class="auth-card mx-lg-3">
|
||||
<div class="card border-0 mb-0">
|
||||
<div class="card-body text-center p-4">
|
||||
|
||||
<div class="text-center px-sm-5 mx-5">
|
||||
<img src="{{ URL::asset('build/images/error500.png') }}" class="img-fluid" alt="">
|
||||
</div>
|
||||
<div class="mt-4 text-center pt-3">
|
||||
<div class="position-relative">
|
||||
<h4 class="fs-18 error-subtitle text-uppercase mb-0">Internal Server Error</h4>
|
||||
<p class="fs-15 text-muted mt-3">It will be as simple as Occidental in fact, it will
|
||||
Occidental to an English person</p>
|
||||
<div class="mt-4">
|
||||
<a href="index" class="btn btn-primary"><i
|
||||
class="mdi mdi-home me-1"></i>Back to home</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!--end col-->
|
||||
</div>
|
||||
<!--end row-->
|
||||
</div>
|
||||
<!--end container-->
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="text-center">
|
||||
<p class="mb-0 text-muted">©
|
||||
<script>
|
||||
document.write(new Date().getFullYear())
|
||||
</script> Toner. Crafted with <i class="mdi mdi-heart text-danger"></i> by
|
||||
Themesbrand
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
@endsection
|
||||
@@ -0,0 +1,5 @@
|
||||
@extends('errors.minimal')
|
||||
|
||||
@section('title', __('Service Unavailable'))
|
||||
@section('code', '503')
|
||||
@section('message', __('Service Unavailable'))
|
||||
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>@yield('title')</title>
|
||||
|
||||
<!-- Styles -->
|
||||
<style>
|
||||
html, body {
|
||||
background-color: #fff;
|
||||
color: #636b6f;
|
||||
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
font-weight: 100;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.full-height {
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.flex-center {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.position-ref {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 36px;
|
||||
padding: 20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flex-center position-ref full-height">
|
||||
<div class="content">
|
||||
<div class="title">
|
||||
@yield('message')
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user