Files
Global-Jain/resources/views/backend/layouts/login.blade.php

55 lines
2.1 KiB
PHP
Raw Normal View History

2025-11-05 10:37:10 +05:30
<!DOCTYPE html>
<!--[if IE 8]>
<html lang="en" class="ie8 no-js"> <![endif]-->
<!--[if IE 9]>
<html lang="en" class="ie9 no-js"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<!-- BEGIN HEAD -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<title>@yield('title')</title>
<link rel="shortcut icon" src=""/>
<link rel="shortcut icon" href="" type="image/x-icon"/>
<link rel="apple-touch-icon" href=""/>
<link rel="apple-touch-icon-precomposed" href=""/>
<meta name="csrf-token" content="{{ csrf_token() }}">
@yield('meta')
@stack('before-styles')
<link href="{{ asset('public/css/pages/login/login-1.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('public/plugins/global/plugins.bundle.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('public/plugins/custom/prismjs/prismjs.bundle.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('public/css/style.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('public/css/themes/layout/header/base/light.css') }}" rel="stylesheet" type="text/css"/>
<link href="{{ asset('public/css/themes/layout/header/menu/light.css') }}" rel="stylesheet" type="text/css"/>
@stack('after-styles')
</head>
<!-- END HEAD -->
<body id="kt_body"
class="header-mobile-fixed subheader-enabled aside-enabled aside-fixed aside-secondary-enabled page-loading">
<!--begin::Main-->
<div class="d-flex flex-column flex-root">
@yield('content')
</div>
<!-- Scripts -->
<script src="{{ asset('public/js/app.js') }}" data-turbolinks-track="reload"></script>
@yield('before-scripts')
<script src="{{ asset('public/plugins/global/plugins.bundle.js') }}"></script>
<script src="{{ asset('public/plugins/custom/prismjs/prismjs.bundle.js') }}"></script>
<script src="{{ asset('public/js/scripts.bundle.js') }}"></script><!--
<script src="{{ asset('js/pages/custom/login/login-general.js') }}"></script> -->
@yield('after-scripts')
@include('includes.partials.flash-messages')
</body>
</html>