@extends('frontend.user.layouts.auth') @section('title', 'Register') @section('content')

{{ translate('Create Your Account', 'auth') }}

{{ translate('Please fill in the details below to create your account.', 'auth') }}

@csrf
@if (getSetting('captcha_register')) @if (getSetting('captcha') == 'hcaptcha' && isPluginEnabled('hcaptcha'))
{!! HCaptcha::script() !!} {!! HCaptcha::display() !!}
@elseif(getSetting('captcha') == 'recaptcha' && isPluginEnabled('recaptcha'))
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!}
@endif @endif
@php $facebookLoginEnabled = isPluginEnabled('facebook_login'); $googleLoginEnabled = isPluginEnabled('google_login'); @endphp @if ($facebookLoginEnabled || $googleLoginEnabled)
{{ translate('Or sign up with', 'auth') }}
@if ($facebookLoginEnabled) {{ translate('Continue with Facebook', 'auth') }} @endif @if ($googleLoginEnabled) {{ translate('Continue with Google', 'auth') }} @endif
@endif

{{ translate('Already have an account?', 'auth') }} {{ translate('Log in here', 'auth') }}

{!! replacePlaceholders(translate('sign up agreement', 'auth'), [ 'terms' => '' . translate('Terms of Service', 'auth') . '', 'privacy' => '' . translate('Privacy Policy', 'auth') . '', ]) !!}

@endsection