@php $setting = App\Models\Utility::getAdminPaymentSetting(); $languages = App\Models\Utility::languages(); config([ 'captcha.sitekey' => $setting['google_recaptcha_key'], 'captcha.secret' => $setting['google_recaptcha_secret'], 'options' => [ 'timeout' => 30, ], ]); @endphp @section('page-title') {{ __('Register') }} @endsection @section('language-bar')
@endsection @section('content')

{{ __('Register') }}

@if (session('statuss'))
{{ __('Email SMTP settings does not configured so please contact to your site admin.') }}
@endif @csrf
@error('name') {{ $message }} @enderror
@error('company') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
{{-- @if (env('RECAPTCHA_MODULE') == 'on') --}} @if ($setting['recaptcha_module'] == 'on')
{{-- {!! NoCaptcha::display() !!} --}} {!! NoCaptcha::display($setting['cust_darklayout'] == 'on' ? ['data-theme' => 'dark'] : []) !!} @error('g-recaptcha-response') {{ $message }} @enderror
@endif
{{-- @dd($lang); --}} {{-- @dd($lang); --}}

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

@endsection @push('custom-scripts') @if ($setting['recaptcha_module'] == 'on') {!! NoCaptcha::renderJs() !!} @endif @endpush