@csrf

{{ __('Register An Account') }}

@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('marketplace'))
@if ($errors->has('shop_name')) {{ $errors->first('shop_name') }} @endif
@if ($errors->has('shop_url')) {{ $errors->first('shop_url') }} @endif {{ route('public.store', (string)old('shop_url')) }}
@if ($errors->has('shop_phone')) {{ $errors->first('shop_phone') }} @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.') }}

@if ($errors->has('agree_terms_and_policy')) {{ $errors->first('agree_terms_and_policy') }} @endif
@if (setting('enable_captcha') && is_plugin_active('captcha')) {!! Captcha::display() !!} @endif

{{ __('Already have an account?') }} {{ __('Log in') }}

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