¨4.0.1¨
This commit is contained in:
@@ -3,31 +3,30 @@
|
||||
<head>
|
||||
<base href="{{ url('/') }}">
|
||||
<meta charset="UTF-8">
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
|
||||
<title>
|
||||
@yield('title') - FleetCart
|
||||
</title>
|
||||
|
||||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:600|Roboto:400,500" rel="stylesheet">
|
||||
|
||||
@foreach ($assets->allCss() as $css)
|
||||
<link media="all" type="text/css" rel="stylesheet" href="{{ v($css) }}">
|
||||
@endforeach
|
||||
<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=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
||||
|
||||
@vite([
|
||||
'Modules/Admin/Resources/assets/sass/main.scss',
|
||||
'Modules/User/Resources/assets/admin/sass/auth.scss',
|
||||
'Modules/User/Resources/assets/admin/js/auth.js',
|
||||
])
|
||||
|
||||
@include('admin::partials.globals')
|
||||
</head>
|
||||
|
||||
<body class="clearfix">
|
||||
<body class="clearfix {{ is_rtl() ? 'rtl' : 'ltr' }}">
|
||||
<div class="login-page">
|
||||
@include('admin::partials.notification')
|
||||
|
||||
@yield('content')
|
||||
</div>
|
||||
|
||||
@foreach ($assets->allJs() as $js)
|
||||
<script src="{{ v($js) }}"></script>
|
||||
@endforeach
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user