@php $customizerHidden = 'customizer-hide'; $pageConfigs = ['myLayout' => 'blank']; @endphp @extends('admin.layouts/layoutMaster' , ['body_class' => 'authentication']) @section('title', 'Login') @section('vendor-style') @endsection @section('page-style') @endsection @section('vendor-script') @endsection @section('page-script') {{-- --}} @if (config('recaptcha.recaptcha_status') && config('recaptcha.recaptcha_version') == 'V2') @endif @if (config('recaptcha.recaptcha_status') && config('recaptcha.recaptcha_version') == 'V3') @endif @endsection @section('content') @include('admin._partials.auth-section')
@include('admin._partials.auth-svg-top')
    @foreach(config() as $key => $value)
  • {{ $key }}: {{ json_encode($value) }}
  • @endforeach
Welcome to {{ config('variables.templateName') }}!

Please sign-in to your account and start the adventure

@if (session('status'))

{{ session('status') }}

@endif @if (session()->has('inactive-user'))

{{ session('inactive-user') }}

@endif
@csrf @if ($errors->any())
{!! implode('
', $errors->all(':message')) !!}
@endif
@if (config('recaptcha.recaptcha_status'))
@endif @if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
@endsection