@extends('layouts.custommaster') @section('content')

{{lang('Login', 'menu')}}

{{lang('Sign In to your account')}}

@csrf
@error('email') {{ lang($message) }} @enderror
@error('password') {{ lang($message) }} @enderror
@if(setting('CAPTCHATYPE')=='manual') @if(setting('RECAPTCH_ENABLE_ADMIN_LOGIN')=='yes')
@error('captcha') {{ lang($message) }} @enderror
{!! captcha_img('') !!}
@endif @endif
@if(setting('CAPTCHATYPE')=='google') @if(setting('RECAPTCH_ENABLE_ADMIN_LOGIN')=='yes')
@if ($errors->has('g-recaptcha-response')) {{ lang($errors->first('g-recaptcha-response')) }} @endif @endif @endif

{{lang('Forgot Password?')}}

@endsection @section('scripts') @endsection