dbfdg @extends('layouts.auth') @section('page-title') {{ __('Register') }} @endsection @php $settings = Utility::settings(); $logo = \App\Models\Utility::get_file('uploads/logo'); $setting = \Modules\LandingPage\Entities\LandingPageSetting::settings(); @endphp @push('custom-scripts') @if ($settings['recaptcha_module'] == 'on') {!! NoCaptcha::renderJs() !!} @endif @endpush @if ($settings['cust_darklayout'] == 'on') @endif @php $languages = App\Models\Utility::languages(); @endphp @section('language-bar')
@endsection @section('content')

{{ __('Register') }}

@if (session('status'))
{{ __('Email SMTP settings does not configured so please contact to your site admin.') }}
@endif @csrf
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
{{ __('Please fill in your email') }}
@error('password') {{ $message }} @enderror
@error('password_confirmation') {{ $message }} @enderror
@if ($settings['recaptcha_module'] == 'on') @if (isset($settings['google_recaptcha_version']) && $settings['google_recaptcha_version'] == 'v2-checkbox')
{!! NoCaptcha::display() !!} @error('g-recaptcha-response') {{ $message }} @enderror
@else
@error('g-recaptcha-response') {{ $message }} @enderror
@endif @endif

{{ __('Already have an account?') }} {{ __('Login') }}

@endsection @if (isset($settings['recaptcha_module']) && $settings['recaptcha_module'] == 'on') @if (isset($settings['google_recaptcha_version']) && $settings['google_recaptcha_version'] == 'v2-checkbox') {!! NoCaptcha::renderJs() !!} @else @endif @endif