@csrf

{{ __('Register') }}

{{ __('Please fill in the information below') }}

@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@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 (is_plugin_active('captcha') && setting('enable_captcha') && get_ecommerce_setting('enable_recaptcha_in_register_page', 0))
{!! Captcha::display() !!}
@endif
@if ($errors->has('agree_terms_and_policy')) {{ $errors->first('agree_terms_and_policy') }} @endif

{{ __('Have an account already?') }} {{ __('Login') }}

{!! apply_filters(BASE_FILTER_AFTER_LOGIN_OR_REGISTER_FORM, null, \Botble\Ecommerce\Models\Customer::class) !!}