{{ __('Register') }}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! apply_filters('ecommerce_customer_register_form_before', null) !!}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@if ($errors->has('agree_terms_and_policy')) {{ $errors->first('agree_terms_and_policy') }} @endif
@if (is_plugin_active('captcha')) @if (Captcha::isEnabled() && get_ecommerce_setting('enable_recaptcha_in_register_page', 0))
{!! Captcha::display() !!}
@endif @if (get_ecommerce_setting('enable_math_captcha_in_register_page', 0))
{!! app('math-captcha')->input([ 'class' => 'form-control', 'id' => 'math-group', 'placeholder' => app('math-captcha')->getMathLabelOnly(), ]) !!}
@endif @endif
{!! apply_filters(BASE_FILTER_AFTER_LOGIN_OR_REGISTER_FORM, null, \Botble\Ecommerce\Models\Customer::class) !!}