@extends('layouts.front-end.app') @section('title', translate('register')) @push('css_or_js') @endpush @section('content')

{{ translate('sign_up')}}

@csrf
{{ translate('please_enter_your_first_name')}}!
{{ translate('please_enter_your_last_name') }}!
{{ translate('please_enter_valid_email_address') }}!
@if ($web_config['ref_earning_status'])
@endif
@php($recaptcha = getWebConfig(name: 'recaptcha')) @if(isset($recaptcha) && $recaptcha['status'] == 1)
@else @endif
@if($web_config['social_login_text'])
{{ translate('or_continue_with') }}
@endif
@if(isset($web_config['customer_login_options']['social_login']) && $web_config['customer_login_options']['social_login']) @foreach ($web_config['customer_social_login_options'] as $socialLoginServiceKey => $socialLoginService) @if ($socialLoginService && $socialLoginServiceKey != 'apple') {{ translate($socialLoginServiceKey) }} @endif @endforeach @endif
{{ translate('Already_have_account ') }}? {{ translate('sign_in') }}
@endsection @push('script') @if(isset($recaptcha) && $recaptcha['status'] == 1) @endif @endpush