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

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

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

@if (setting('login_disable') == 'on') @endif @if ( $socialAuthSettings->envato_status == 'enable' || $socialAuthSettings->google_status == 'enable' || $socialAuthSettings->microsoft_status == 'enable' )
@if ($socialAuthSettings->envato_status == 'enable')
{{ lang('Login with Envato') }}
@endif @if ($socialAuthSettings->google_status == 'enable')
{{ lang('Login with Google') }}
@endif @if ($socialAuthSettings->microsoft_status == 'enable')
{{ lang('Login with Microsoft') }}
@endif
Or
@endif
@csrf
@error('email')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
@if (setting('CAPTCHATYPE') == 'manual') @if (setting('RECAPTCH_ENABLE_LOGIN') == 'yes')
{!! captcha_img('') !!}
@endif @endif
@if (setting('CAPTCHATYPE') == 'google') @if (setting('RECAPTCH_ENABLE_LOGIN') == 'yes')
@endif @endif
{{ lang('Forgot Password?') }} @if (setting('REGISTER_DISABLE') == 'on')

{{ lang('Don’t have account?') }}{{ lang('Register', 'menu') }}

@endif

{{ lang('Back to home') }}

@endsection @section('scripts') @endsection