{{ __('Sign in to your account') }}

{{ __('Good to have you back!') }}

{{-- Sign in With Google --}} @if (env('GOOGLE_ENABLE') == 'on') @endif
{{ __(env('GOOGLE_ENABLE') == 'on' ? 'or sign in with email' : 'Sign in with email') }}
{{-- Login form --}}
@csrf {{-- Email --}}
{{-- Errors --}} @error('email') @enderror {{-- Password --}}
{{-- Show password --}} {{-- Recaptcha --}} @if ($settings['recaptcha_configuration']['RECAPTCHA_ENABLE'] == 'on')
{!! htmlFormSnippet() !!}
@endif
{{-- Forget password --}} @if (Route::has('password.request')) {{ __('Forgot your password?') }} @endif {{-- Register --}} @if(Route::has('register'))

{{ __('Don’t have an account?')}} {{ __('Sign up') }}

@endif