63 lines
2.6 KiB
PHP
63 lines
2.6 KiB
PHP
<!DOCTYPE html>
|
|
|
|
<html lang="en" class="light-style customizer-hide" dir="ltr" data-theme="theme-default"
|
|
data-assets-path="../../assets/" data-template="vertical-menu-template">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />
|
|
|
|
<title>Login Cover - Pages | {{ config('app.name') }}</title>
|
|
|
|
<meta name="description" content="" />
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/x-icon" href="../../assets/img/favicon/favicon.ico" />
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
|
|
rel="stylesheet" />
|
|
|
|
<!-- Icons -->
|
|
<link rel="stylesheet" href="{{ asset('backend/theme/assets/vendor/fonts/boxicons.css') }}" />
|
|
<link rel="stylesheet" href="{{ asset('backend/theme/assets/vendor/fonts/fontawesome.css') }}" />
|
|
<link rel="stylesheet" href="{{ asset('backend/theme/assets/vendor/fonts/flag-icons.css') }}" />
|
|
|
|
<!-- Core CSS -->
|
|
<link rel="stylesheet" href="{{ asset('backend/theme/assets/vendor/css/rtl/core.css') }}"
|
|
class="template-customizer-core-css" />
|
|
<link rel="stylesheet" href="{{ asset('backend/theme/assets/vendor/css/rtl/theme-default.css') }}"
|
|
class="template-customizer-theme-css" />
|
|
{{-- <link rel="stylesheet" href="{{asset('backend/theme/assets/css/demo.css')}}" /> --}}
|
|
|
|
<link rel="stylesheet"
|
|
href="{{ asset('backend/theme/assets/vendor/libs/formvalidation/dist/css/formValidation.min.css') }}" />
|
|
|
|
<!-- Page CSS -->
|
|
<!-- Page -->
|
|
<link rel="stylesheet" href="{{ asset('backend/theme/assets/vendor/css/pages/page-auth.css') }}" />
|
|
<!-- Helpers -->
|
|
|
|
<!-- vite -->
|
|
@vite(['resources/js/backend/app.js'])
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Content -->
|
|
@yield('content')
|
|
<!-- / Content -->
|
|
|
|
<!-- Vendors JS -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
|
|
<script src="../../assets/vendor/libs/formvalidation/dist/js/FormValidation.min.js"></script>
|
|
<script src="../../assets/vendor/libs/formvalidation/dist/js/plugins/Bootstrap5.min.js"></script>
|
|
<script src="../../assets/vendor/libs/formvalidation/dist/js/plugins/AutoFocus.min.js"></script>
|
|
</body>
|
|
|
|
</html>
|