{{ __('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') && setting('enable_captcha') && get_ecommerce_setting('enable_recaptcha_in_register_page', 0))
{!! Captcha::display() !!}
@endif
{!! apply_filters(BASE_FILTER_AFTER_LOGIN_OR_REGISTER_FORM, null, \Botble\Ecommerce\Models\Customer::class) !!}