Initial commit
This commit is contained in:
48
resources/views/pages/system/error.blade.php
Normal file
48
resources/views/pages/system/error.blade.php
Normal file
@ -0,0 +1,48 @@
|
||||
<!--begin::Card-->
|
||||
<div class="card card-flush w-lg-650px py-5">
|
||||
<!--begin::Card body-->
|
||||
<div class="card-body py-15 py-lg-20">
|
||||
|
||||
<!--begin::Page bg image-->
|
||||
<style>
|
||||
body {
|
||||
background-image: url('{{ image('auth/bg7.jpg') }}');
|
||||
}
|
||||
|
||||
[data-bs-theme="dark"] body {
|
||||
background-image: url('{{ image('auth/bg7-dark.jpg') }}');
|
||||
}
|
||||
</style>
|
||||
<!--end::Page bg image-->
|
||||
|
||||
<!--begin::Title-->
|
||||
<h1 class="fw-bolder fs-2qx text-gray-900 mb-4">
|
||||
System Error
|
||||
</h1>
|
||||
<!--end::Title-->
|
||||
|
||||
<!--begin::Text-->
|
||||
<div class="fw-semibold fs-6 text-gray-500 mb-7">
|
||||
Something went wrong! Please try again later.
|
||||
</div>
|
||||
<!--end::Text-->
|
||||
|
||||
<!--begin::Illustration-->
|
||||
<div class="mb-11">
|
||||
<img src="{{ image('auth/500-error.png') }}" class="mw-100 mh-300px theme-light-show" alt=""/>
|
||||
<img src="{{ image('auth/500-error-dark.png') }}" class="mw-100 mh-300px theme-dark-show" alt=""/>
|
||||
</div>
|
||||
<!--end::Illustration-->
|
||||
|
||||
<!--begin::Link-->
|
||||
<div class="mb-0">
|
||||
<a href="/" class="btn btn-sm btn-primary">Return Home</a>
|
||||
</div>
|
||||
<!--end::Link-->
|
||||
|
||||
</div>
|
||||
<!--end::Card body-->
|
||||
</div>
|
||||
<!--end::Card-->
|
||||
|
||||
|
46
resources/views/pages/system/not_found.blade.php
Normal file
46
resources/views/pages/system/not_found.blade.php
Normal file
@ -0,0 +1,46 @@
|
||||
<!--begin::Card-->
|
||||
<div class="card card-flush w-lg-650px py-5">
|
||||
<!--begin::Card body-->
|
||||
<div class="card-body py-15 py-lg-20">
|
||||
|
||||
<!--begin::Page bg image-->
|
||||
<style>
|
||||
body {
|
||||
background-image: url('{{ image('auth/bg1.jpg') }}');
|
||||
}
|
||||
|
||||
[data-bs-theme="dark"] body {
|
||||
background-image: url('{{ image('auth/bg1-dark.jpg') }}');
|
||||
}
|
||||
</style>
|
||||
<!--end::Page bg image-->
|
||||
|
||||
<!--begin::Title-->
|
||||
<h1 class="fw-bolder fs-2hx text-gray-900 mb-4">
|
||||
Oops!
|
||||
</h1>
|
||||
<!--end::Title-->
|
||||
|
||||
<!--begin::Text-->
|
||||
<div class="fw-semibold fs-6 text-gray-500 mb-7">
|
||||
We can't find that page.
|
||||
</div>
|
||||
<!--end::Text-->
|
||||
|
||||
<!--begin::Illustration-->
|
||||
<div class="mb-3">
|
||||
<img src="{{ image('auth/404-error.png') }}" class="mw-100 mh-300px theme-light-show" alt=""/>
|
||||
<img src="{{ image('auth/404-error-dark.png') }}" class="mw-100 mh-300px theme-dark-show" alt=""/>
|
||||
</div>
|
||||
<!--end::Illustration-->
|
||||
|
||||
<!--begin::Link-->
|
||||
<div class="mb-0">
|
||||
<a href="/" class="btn btn-sm btn-primary">Return Home</a>
|
||||
</div>
|
||||
<!--end::Link-->
|
||||
|
||||
</div>
|
||||
<!--end::Card body-->
|
||||
</div>
|
||||
<!--end::Card-->
|
Reference in New Issue
Block a user