@extends('layouts.customregistermaster') @section('styles') @endsection @section('content')

{{ lang('Register', 'menu') }}

{{ lang('Create new account') }}

@if ( $socialAuthSettings->envato_status == 'enable' || $socialAuthSettings->google_status == 'enable' || $socialAuthSettings->microsoft_status == 'enable' )
@if ($socialAuthSettings->envato_status == 'enable')
Login with Envato
@endif @if ($socialAuthSettings->google_status == 'enable')
Login with Google
@endif @if ($socialAuthSettings->microsoft_status == 'enable')
{{ lang('Login with Microsoft') }}
@endif
Or
@endif
@if (setting('REGISTER_DISABLE') == 'off') @endif
@error('firstname') {{ lang($message) }} @enderror
@error('lastname') {{ lang($message) }} @enderror
@error('email') {{ lang($message) }} @enderror
@error('password') {{ lang($message) }} @enderror
@error('password_confirmation') {{ lang($message) }} @enderror
@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')
{!! captcha_img('') !!}
@error('captcha') {{ lang($message) }} @enderror @endif @endif
@if (setting('CAPTCHATYPE') == 'google') @if (setting('RECAPTCH_ENABLE_REGISTER') == 'yes')
@endif @endif
@error('agree_terms') {{ lang($message) }} @enderror

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

{{ lang('Send me Back') }}

@endsection @section('scripts') @endsection