Initial commit

This commit is contained in:
Daeng Deni Mardaeni
2023-07-03 14:33:24 +07:00
commit 6210e33a3b
3798 changed files with 258149 additions and 0 deletions

View File

@ -0,0 +1,85 @@
<x-default-layout>
<!--begin::Row-->
<div class="row g-5 g-xl-10 mb-5 mb-xl-10">
<!--begin::Col-->
<div class="col-md-6 col-lg-6 col-xl-6 col-xxl-3 mb-md-5 mb-xl-10">
@include('partials/widgets/cards/_widget-20')
@include('partials/widgets/cards/_widget-7')
</div>
<!--end::Col-->
<!--begin::Col-->
<div class="col-md-6 col-lg-6 col-xl-6 col-xxl-3 mb-md-5 mb-xl-10">
@include('partials/widgets/cards/_widget-17')
@include('partials/widgets/lists/_widget-26')
</div>
<!--end::Col-->
<!--begin::Col-->
<div class="col-xxl-6">
@include('partials/widgets/engage/_widget-10')
</div>
<!--end::Col-->
</div>
<!--end::Row-->
<!--begin::Row-->
<div class="row gx-5 gx-xl-10">
<!--begin::Col-->
<div class="col-xxl-6 mb-5 mb-xl-10">
@include('partials/widgets/charts/_widget-8')
</div>
<!--end::Col-->
<!--begin::Col-->
<div class="col-xl-6 mb-5 mb-xl-10">
@include('partials/widgets/tables/_widget-16')
</div>
<!--end::Col-->
</div>
<!--end::Row-->
<!--begin::Row-->
<div class="row g-5 g-xl-10 mb-5 mb-xl-10">
<!--begin::Col-->
<div class="col-xxl-6">
@include('partials/widgets/cards/_widget-18')
</div>
<!--end::Col-->
<!--begin::Col-->
<div class="col-xl-6">
@include('partials/widgets/charts/_widget-36')
</div>
<!--end::Col-->
</div>
<!--end::Row-->
<!--begin::Row-->
<div class="row g-5 g-xl-10 mb-5 mb-xl-10">
<!--begin::Col-->
<div class="col-xl-4">
@include('partials/widgets/charts/_widget-35')
</div>
<!--end::Col-->
<!--begin::Col-->
<div class="col-xl-8">
@include('partials/widgets/tables/_widget-14')
</div>
<!--end::Col-->
</div>
<!--end::Row-->
<!--begin::Row-->
<div class="row gx-5 gx-xl-10">
<!--begin::Col-->
<div class="col-xl-4">
@include('partials/widgets/charts/_widget-31')
</div>
<!--end::Col-->
<!--begin::Col-->
<div class="col-xl-8">
@include('partials/widgets/charts/_widget-24')
</div>
<!--end::Col-->
</div>
<!--end::Row-->
</x-default-layout>

View 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-->

View 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-->