Files
think-greaterchiangmai/think-backend.greaterchiangmai.com/resources/views/layouts/errorTemplate.blade.php
2025-11-11 14:55:29 +07:00

102 lines
3.7 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<!--begin::Head-->
<head>
<base href="{{ url('') }}" />
<title>The Greater Chiangmai</title>
<meta charset="utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="" />
<meta property="og:url" content="" />
<meta property="og:site_name" content="" />
<link rel="canonical" href="" />
<link rel="shortcut icon" href="{{ url('assets/media/logos/favicon.ico') }}" />
<!--begin::Fonts(mandatory for all pages)-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700" />
<!--end::Fonts-->
<!--begin::Global Stylesheets Bundle(mandatory for all pages)-->
<link href="{{ url('assets/plugins/global/plugins.bundle.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ url('assets/css/style.bundle.css') }}" rel="stylesheet" type="text/css" />
<!--end::Global Stylesheets Bundle-->
</head>
<!--end::Head-->
<!--begin::Body-->
<body id="kt_body" class="app-blank bgi-size-cover bgi-position-center bgi-no-repeat">
<!--begin::Theme mode setup on page load-->
<script>
var defaultThemeMode = "light";
var themeMode;
if (document.documentElement) {
if (document.documentElement.hasAttribute("data-bs-theme-mode")) {
themeMode = document.documentElement.getAttribute("data-bs-theme-mode");
} else {
if (localStorage.getItem("data-bs-theme") !== null) {
themeMode = localStorage.getItem("data-bs-theme");
} else {
themeMode = defaultThemeMode;
}
}
if (themeMode === "system") {
themeMode = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
}
document.documentElement.setAttribute("data-bs-theme", themeMode);
}
</script>
<!--end::Theme mode setup on page load-->
<!--begin::Root-->
<div class="d-flex flex-column flex-root" id="kt_app_root">
<!--begin::Page bg image-->
<style>
body {
background-image: url('{{ url('assets/media/auth/bg7.jpg') }}');
}
[data-bs-theme="dark"] body {
background-image: url('{{ url('assets/media/auth/bg7-dark.jpg') }}');
}
</style>
<!--end::Page bg image-->
<!--begin::Authentication - Signup Welcome Message -->
<div class="d-flex flex-column flex-center flex-column-fluid">
<!--begin::Content-->
@yield('main')
<!--end::Content-->
</div>
<!--end::Authentication - Signup Welcome Message-->
</div>
<!--end::Root-->
<!--begin::Javascript-->
<script>
var hostUrl = "{{ url('assets') }}";
var baseUrl = "{{ url('') }}"
</script>
<!--begin::Global Javascript Bundle(mandatory for all pages)-->
<script src="{{ url('assets/plugins/global/plugins.bundle.js') }}"></script>
<script src="{{ url('assets/js/scripts.bundle.js') }}"></script>
<!--end::Global Javascript Bundle-->
<!--begin::Custom Javascript(used for this page only)-->
<script src="{{ url('assets/js/custom/authentication/sign-in/general.js') }}"></script>
<script src="{{ url('assets/js/custom/authentication/sign-in/i18n.js') }}"></script>
<!--end::Custom Javascript-->
<!--end::Javascript-->
@yield('script')
</body>
<!--end::Body-->
</html>