@extends('auth.layouts.authentication') @section('content') @php $isOtpSystemActivated = addon_is_activated('otp_system'); @endphp
{{ translate('Site Icon')}}

{{ !$isOtpSystemActivated ? translate('Verify Your Email') : translate('Verify Your Email/Phone') }}

@csrf @if (addon_is_activated('otp_system'))
@else
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endif @if(get_setting('google_recaptcha') == 1 && get_setting('recaptcha_customer_mail_verification') == 1) @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif @endif

{{ translate('Already have an account?')}} {{ translate('Log In')}}

@endsection @section('script') @if(get_setting('google_recaptcha') == 1 && get_setting('recaptcha_customer_mail_verification') == 1) @endif @endsection