@extends('frontend.layouts.app') @section('content')

{{ translate('Create an account.')}}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if (addon_is_activated('otp_system'))
@else
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if(get_setting('google_recaptcha') == 1)
@endif
@if(get_setting('google_login') == 1 || get_setting('facebook_login') == 1 || get_setting('twitter_login') == 1)
{{ translate('Or Join With')}}
@endif

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

{{ translate('Log In')}}

{{ translate('Registered Shop')}}

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