@extends('auth.layouts.authentication') @section('content')
{{ translate('Site Icon')}}

{{ translate('Register your shop')}}

@csrf
{{ translate('Personal Info')}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{ translate('Password must contain at least 6 digits') }}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{ translate('Basic Info')}}
@if ($errors->has('shop_name')) {{ $errors->first('shop_name') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if(get_setting('google_recaptcha') == 1)
@if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif @endif

{{ translate('Already have an account?')}} {{ translate('Log In')}}

@endsection @section('script') @if(get_setting('google_recaptcha') == 1) @endif @endsection