@extends('layouts.auth') @section('site_title', formatTitle([__('Register'), config('settings.title')])) @section('head_content') @endsection @section('content')

{{ __('Register') }}

{{ __('Join us.') }}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('agreement')) {{ $errors->first('agreement') }} @endif
@if(config('settings.captcha_registration')) {!! NoCaptcha::displaySubmit('registration-form', __('Register'), ['data-theme' => (request()->cookie('dark_mode') == 1 ? 'dark' : 'light'), 'data-size' => 'invisible', 'class' => 'btn btn-block btn-primary py-2']) !!} {!! NoCaptcha::renderJs(__('lang_code')) !!} @else @endif @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
{{ __('Register') }}
{{ __('Join us.') }}
@endsection