PATH:
home
/
rwabteecom
/
project_11
/
resources
/
views
/
admin
/
layouts
/
Editing: auth.blade.php
<!DOCTYPE html> <html lang="{{LaravelLocalization::getCurrentLocale()}}" @if(LaravelLocalization::getCurrentLocaleDirection() == "rtl") direction="rtl" dir="rtl" style="direction: rtl" @endif> <head> <title>{{gs('title')}}</title> <meta charset="utf-8" /> <meta name="description" content="{{gs('description')}}" /> <meta name="keywords" content="{{gs('description')}}" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> @include("admin.partials.styles") </head> <body id="kt_body" @if(LaravelLocalization::getCurrentLocaleDirection() == "rtl") direction="rtl" @endif class="app-blank bgi-size-cover bgi-attachment-fixed bgi-position-center bgi-no-repeat"> <body class="app-default" data-kt-app-page-loading-enabled="true" data-kt-app-page-loading="on"> <script>let defaultThemeMode = "light"; let 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> <div class="d-flex flex-column flex-root" id="kt_app_root"> <style>body { background-image: url('{{asset('backend/media/auth/bg4.jpg')}}'); } [data-bs-theme="dark"] body { background-image: url('{{asset('backend/media/auth/bg4-dark.jpg')}}'); }</style> <div class="d-flex flex-lg-row"> <div class="d-flex flex-column-fluid justify-content-center p-12 p-lg-20"> <div class="bg-body d-flex flex-column align-items-stretch flex-center rounded-4 w-md-600px p-20"> <a href="{{url()->current()}}" class="d-block text-center mb-10"> <img src="{{gs('logo')}}" alt="" style="width: 150px;" class="img-fluid img-fluid"> </a> @yield("content") <div class="d-flex flex-stack px-lg-10"> <div class="me-0"> <button class="btn btn-flex btn-link btn-color-gray-700 btn-active-color-primary rotate fs-base" data-kt-menu-trigger="click" data-kt-menu-placement="bottom-start" data-kt-menu-offset="0px, 0px"> <img data-kt-element="current-lang-flag" class="w-20px h-20px rounded me-3" src="{{asset('backend/media/flags/' . LaravelLocalization::getSupportedLocales()[app()->getLocale()]["flag"])}}" alt=""/> <span data-kt-element="current-lang-name" class="me-1">{{LaravelLocalization::getCurrentLocaleNativeReading()}}</span> <i class="ki-duotone ki-down fs-5 text-muted rotate-180 m-0"></i> </button> <div class="menu menu-sub menu-sub-dropdown menu-column menu-rounded menu-gray-800 menu-state-bg-light-primary fw-semibold w-200px py-4 fs-7" data-kt-menu="true" id="kt_auth_lang_menu"> @foreach(LaravelLocalization::getSupportedLocales() as $localeCode => $properties) <div class="menu-item px-3"> <a href="{{ LaravelLocalization::getLocalizedURL($localeCode, null, [], true) }}" hreflang="{{ $localeCode }}" class="menu-link d-flex px-5" data-kt-lang="English"> <span class="symbol symbol-20px me-4"> <img data-kt-element="lang-flag" class="rounded-1" src="{{asset('backend/media/flags/' . $properties['flag'])}}" alt=""/> </span> <span data-kt-element="lang-name"> {{ $properties['native'] }}</span> </a> </div> @endforeach </div> </div> </div> </div> </div> </div> </div> @include("admin.partials.scripts") @vite(["resources/js/app.js"]) </body> </html>
SAVE
CANCEL