PATH:
home
/
rwabteecom
/
public_html
/
resources
/
views
/
layouts
/
Editing: auth.blade.php
<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>@yield('title') | {{ getAppName() }}</title> <!-- Favicon --> <link rel="icon" href="{{ getFaviconUrl() }}" type="image/png"> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Fonts --> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" /> <!-- General CSS Files --> <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/third-party.css') }}"> <link rel="stylesheet" type="text/css" href="{{ mix('assets/css/page.css') }}"> <!-- CSS Libraries --> <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/style.css') }}"> <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/style.css') }}"> <link rel="stylesheet" type="text/css" href="{{ asset('css/plugins.css') }}"> @stack('css') @yield('css') {!! ReCaptcha::htmlScriptTagJsApi() !!} </head> <body> <div class="d-flex flex-column flex-column-fluid bgi-position-y-bottom position-x-center bgi-no-repeat bgi-size-contain bgi-attachment-fixed authImage @if (getLanguageByKey(checkFrontLanguageSession()) == 'Arabic') rtl @endif"> <div class="dropdown ms-auto z-index-9"> <button type="button" title="Active" class="dropdown-toggle hide-arrow btn btn btn-info m-7 mb-5 pl-2" id="dropdownMenuButton1" data-bs-toggle="dropdown" data-bs-boundary="viewport" aria-expanded="false" @if (getLanguageByKey(checkFrontLanguageSession()) == 'Arabic') dir="rtl" @endif> {{ getLanguageByKey(checkFrontLanguageSession()) }} <i class="fa fa-language"></i> </button> <ul class="dropdown-menu min-width-220" aria-labelledby="dropdownMenuButton1" style="max-height: 380px;overflow: auto;"> @foreach (getAllLanguageWithFullData() as $key => $value) <li style="padding: 0px" class="dropdown-item languageSelection padding {{ checkFrontLanguageSession() == $value->iso_code ? 'active' : '' }}" data-prefix-value="{{ $value->iso_code }}"><a class=" dropdown-item {{ checkFrontLanguageSession() == $value->iso_code ? 'active' : '' }}" class="text-decoration-none" data-id="{{ $value->iso_code }}" href="javascript:void(0)"> @if (array_key_exists($value->iso_code, \App\Models\User::FLAG)) @foreach (\App\Models\User::FLAG as $imageKey => $imageValue) @if ($imageKey == $value->iso_code) <img src="{{ asset($imageValue) }}" width="20" height="18" class="me-1" /> @endif @endforeach @else @if (count($value->media) != 0) <img src="{{ $value->image_url }}" class="me-1" /> @else <i class="fa fa-flag fa-xl me-3 text-danger" aria-hidden="true"></i> @endif @endif {{ $value->name }} </a> </li> @endforeach </ul> </div> <ul> </ul> @yield('content') </div> <footer> <div class="container-fluid padding-0 d-none"> <div class="row align-items-center justify-content-center"> <div class="col-xl-6"> <div class="copyright text-center text-muted"> {{ __('messages.placeholder.all_rights_reserve') }} © {{ date('Y') }} <a href="{{ route('home') }}" class="font-weight-bold ml-1" target="_blank">{{ getAppName() }}</a> </div> </div> </div> </div> </footer> <!-- Scripts --> @routes <script src="{{ mix('assets/js/front-third-party.js') }}"></script> <script src="{{ asset('messages.js?$mixID') }}"></script> <script src="{{ mix('assets/js/custom/helpers.js') }}"></script> {{-- <script src="{{ mix('assets/js/custom/custom.js') }}"></script> --}} <script src="{{ mix('assets/js/auth/auth.js') }}"></script> @stack('scripts') <script> let defaultCountryCodeValue = 'in'; let mobileValidation = "{{ getSuperAdminSettingValue('mobile_validation') }}"; let utilsScript = "{{ asset('assets/js/inttel/js/utils.min.js') }}" $(document).ready(function() { $('.alert').delay(5000).slideUp(300) }) </script> <script src="{{ mix('assets/js/intl-tel-input/build/intlTelInput.js') }}"></script> {{-- <script src="{{ mix('assets/js/custom/phone-number-country-code.js') }}"></script> --}} </body> </html>
SAVE
CANCEL