Viewing file: auth_admin.blade.php (3.52 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html> @php $siteDirection=isset(json_decode(get_settings('local_setting'))->direction)?json_decode(get_settings('local_setting'))->direction:'ltr'; @endphp <html lang="en" dir="{{$siteDirection}}"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>@yield('title')</title> <!-- Tell the browser to be responsive to screen width --> <meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font Awesome --> <link rel="stylesheet" href="{{asset('plugins/fontawesome-free/css/all.min.css')}}"> <!-- Ionicons --> <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"> <!-- icheck bootstrap --> <link rel="stylesheet" href="{{asset('plugins/icheck-bootstrap/icheck-bootstrap.min.css')}}"> <!-- Theme style --> <link rel="shortcut icon" href="{{asset('uploads/'.get_settings('app_favicon'))}}" type="image/x-icon">
<link rel="stylesheet" href="{{asset('plugins/toastr/toastr.min.css')}}"> <link rel="stylesheet" href="{{asset('css/custom.css')}}">
<link rel="stylesheet" href="{{asset('css/adminlte.min.css')}}">
<!-- Google Font: Source Sans Pro --> <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet"> <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=Inconsolata:wght@300&family=Montserrat:wght@200&family=Poppins:wght@300&display=swap" rel="stylesheet">
@yield('extra-css')
<style> .ai-img img { height: 100%; } .ai-img { height: 100% } .form-section { padding: 1.1rem } @media (max-width: 700px) { .img-section { display: none !important; } .w-70 { width: 90% !important; } .custom-p-5{ padding: 0rem !important; } } .w-70 { width: 70%; } .custom-p-5{ padding: 3rem; } .flex-wrapper-center { display: flex; align-items: center; justify-content: center; } label{ font-size: 14px !important; } .login-page{ background: #a9d0f763 !important; } </style> </head> <body class="hold-transition login-page"> <div class="container-fluid custom-p-5"> <div class="flex-wrapper-center"> <div class="w-70"> <!-- /.login-logo --> <div class="card"> @yield('content') <!-- /.login-card-body --> </div> </div> </div> </div> <!-- /.login-box -->
<!-- jQuery --> <script src="{{asset('plugins/jquery/jquery.min.js')}}"></script> <!-- Bootstrap 4 --> <script src="{{asset('plugins/bootstrap/js/bootstrap.bundle.min.js')}}"></script> <!-- AdminLTE App --> <script src="{{asset('js/adminlte.min.js')}}"></script> <script src="{{asset('js/custom.js')}}"></script>
@if(session()->has('success') || session()->has('fail') || count($errors)>0) <x-alert :type="session()->get('success')?'success':'danger'" :is-errors="$errors" :message="session()->get('success')??session()->get('fail')"/> @endif
@yield('extra-script') <script> $(document).on('click', '.home-section', function(e){ console.log('working') }) </script> </body> </html>
|