dbfdg @extends('layouts.auth') @php use App\Models\Utility; $logo = \App\Models\Utility::get_file('uploads/logo'); $settings = Utility::settings(); $company_logo = $settings['company_logo'] ?? ''; @endphp @push('custom-scripts') @if ($settings['recaptcha_module'] == 'on') {!! NoCaptcha::renderJs() !!} @endif @endpush @section('page-title') {{ __('Login') }} @endsection @if ($settings['cust_darklayout'] == 'on') @endif @php $languages = App\Models\Utility::languages(); @endphp @section('language-bar')
@endsection @section('content')

{{ __('Login') }}

{{ Form::open(['route' => 'login', 'method' => 'post', 'id' => 'loginForm', 'class' => 'login-form']) }} @if (session('status'))
{{ session('status') }}
@endif
{{ Form::text('email', null, ['class' => 'form-control', 'placeholder' => __('Enter Your Email')]) }} @error('email') {{ $message }} @enderror
{{ Form::password('password', ['class' => 'form-control', 'placeholder' => __('Enter Your Password'), 'id' => 'input-password']) }} @error('password') {{ $message }} @enderror
@if (Route::has('password.request')) {{ __('Forgot your password?') }} @endif
@if ($settings['recaptcha_module'] == 'on') @if (isset($settings['google_recaptcha_version']) && $settings['google_recaptcha_version'] == 'v2-checkbox')
{!! NoCaptcha::display() !!} @error('g-recaptcha-response') {{ $message }} @enderror
@else
@error('g-recaptcha-response') {{ $message }} @enderror
@endif @endif
{{ Form::submit(__('Login'), ['class' => 'btn btn-primary mt-2', 'id' => 'saveBtn']) }}
@if ($settings['enable_signup'] == 'on')

{{ __("Don't have an account?") }} {{ __('Register') }}

@endif
{{ Form::close() }}
@endsection @if (isset($settings['recaptcha_module']) && $settings['recaptcha_module'] == 'on') @if (isset($settings['google_recaptcha_version']) && $settings['google_recaptcha_version'] == 'v2-checkbox') {!! NoCaptcha::renderJs() !!} @else @endif @endif