{{ __('Sign Up') }}

{{ __('Sign Up') }}

{{ __('Your personal data will be used to support your experience throughout this website, to manage access to your account.') }}

@csrf
@error('name')
{{ $errors->first('name') }}
@enderror
@error('email')
{{ $errors->first('email') }}
@enderror
@error('password_confirmation')
{{ $errors->first('password_confirmation') }}
@enderror
@if (is_plugin_active('captcha')) @if(Captcha::isEnabled() && get_ecommerce_setting('enable_recaptcha_in_register_page', 0))
{!! Captcha::display() !!} @error('captcha')
{{ $errors->first('captcha') }}
@enderror
@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')->label()]) !!}
@error('math-captcha')
{{ $errors->first('math-captcha') }}
@enderror
@endif @endif

{{ __('Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy.') }}

@error('agree_terms_and_policy')
{{ $errors->first('agree_terms_and_policy') }}
@enderror
{!! apply_filters(BASE_FILTER_AFTER_LOGIN_OR_REGISTER_FORM, null, \Botble\Ecommerce\Models\Customer::class) !!}