@extends('layouts.auth') @section('title') {{__('Login')}} @endsection @php $logo=\App\Models\Utility::get_file('logo/'); $settings = \App\Models\Utility::settings(); config( [ 'captcha.secret' => isset($settings['google_recaptcha_secret']) ? $settings['google_recaptcha_secret'] :'', 'captcha.sitekey' => isset($settings['google_recaptcha_key']) ? $settings['google_recaptcha_key'] :'' , 'options' => [ 'timeout' => 30, ], ] ); @endphp @push('custom-scripts') @if(isset($settings['recaptcha_module']) == 'yes') {!! NoCaptcha::renderJs() !!} @endif @endpush @section('language-bar')
@endsection @section('content')
@if (session('status'))
{{ __('Your Account is disable,please contact your Administrator') }}
@endif
{{__('Login')}}

{{__('Login to your account to continue.')}}

@csrf
@error('email') {{ $message }} @enderror
@if (Route::has('password.request')) @endif
@error('password') {{ $message }} @enderror
@if(isset($settings['recaptcha_module']) == 'yes')
{!! NoCaptcha::display() !!} @error('g-recaptcha-response') {{ $message }} @enderror
@endif
@if(\App\Models\Utility::getValByName('SIGNUP') == 'on') @endif
@endsection