{{ lang('Register', 'menu') }}
@if ( $socialAuthSettings->envato_status == 'enable' || $socialAuthSettings->google_status == 'enable' || $socialAuthSettings->microsoft_status == 'enable' )
@if ($socialAuthSettings->envato_status == 'enable')
{{ lang('Login with Envato') }}
@endif @if ($socialAuthSettings->google_status == 'enable')
{{ lang('Login with Google') }}
@endif @if ($socialAuthSettings->microsoft_status == 'enable')
{{ lang('Login with Microsoft') }}
@endif
{{ lang('Or') }}
@endif
@if (setting('REGISTER_DISABLE') == 'off')
{{ setting('login_disable_statement') }}
@endif
@csrf
@php use App\Models\Customfield; $customfields = Customfield::whereIn('displaytypes', [ 'both', 'registerform', ]) ->where('status', 1) ->get(); @endphp @if ($customfields->isNotEmpty()) @foreach ($customfields as $customfield)
@if ($customfield->fieldtypes == 'text') @endif @if ($customfield->fieldtypes == 'email') @endif @if ($customfield->fieldtypes == 'textarea') @endif @if ($customfield->fieldtypes == 'checkbox') @php $coptions = explode( ',', $customfield->fieldoptions, ); @endphp @foreach ($coptions as $key => $coption) @endforeach @endif @if ($customfield->fieldtypes == 'select') @endif @if ($customfield->fieldtypes == 'radio') @php $roptions = explode( ',', $customfield->fieldoptions, ); @endphp @foreach ($roptions as $roption) @endforeach @endif
@endforeach @endif
@if (setting('CAPTCHATYPE') == 'manual') @if (setting('RECAPTCH_ENABLE_REGISTER') == 'yes')
@error('captcha') {{ lang($message) }} @enderror
{!! captcha_img('') !!}
@endif @endif @if (setting('CAPTCHATYPE') == 'google') @if (setting('RECAPTCH_ENABLE_REGISTER') == 'yes')
@endif @endif
{{-- --}}

{{ lang('Already have an account?') }}{{ lang('Login', 'menu') }}