@extends('storefront::public.auth.layout') @section('title', trans('user::auth.register')) @section('content')
@include('storefront::public.auth.partials.language_picker')

{{ trans('user::auth.register') }}

{{ trans('user::auth.enter_your_create_account_details') }}

@include('storefront::public.auth.partials.notification')
@csrf @honeypot
@include('storefront::public.auth.partials.language_picker')
{!! $errors->first('first_name', ':message') !!}
{!! $errors->first('last_name', ':message') !!}
{!! $errors->first('email', ':message') !!}
{!! $errors->first('phone', ':message') !!}
{!! $errors->first('password', ':message') !!}
{!! $errors->first('password_confirmation', ':message') !!}
@if (setting('google_recaptcha_enabled'))
@error('g-recaptcha-response') {{ $message }} @enderror
@endif
{{ trans('user::auth.privacy_policy') }} {!! $errors->first('privacy_policy', ':message') !!}
@include('storefront::public.auth.partials.social_login')
@endsection @push('scripts') @if (setting('google_recaptcha_enabled')) @endif @endpush