@extends('auth.layouts.app') @push('title') {{ __('Login') }} @endpush @section('content')
{{ getOption('app_name') }}

{{ __('Sign In') }}

@if (isAddonInstalled('SUBSAAS') > 0) @if (getOption('registration_status', 0) == ACTIVE)
{{ __('Don’t have an account') }}? {{ __('Sign Up') }}
@endif @endif
@csrf
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
{{ __('Forgot Password?') }}
@if (!empty(getOption('google_recaptcha_status')) && getOption('google_recaptcha_status') == 1)
{!! RecaptchaV3::field('register') !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endif
@if (getOption('google_login_status') == 1 || getOption('facebook_login_status') == 1)

{{ __('Or continue with') }}

@endif @if (env('LOGIN_HELP') == 'active')
@endif
@endsection @push('script') @endpush