@if(!auth()->check())
EXISTING USERS LOGIN HERE
×
{{(session()->get('flash_success'))}}
@lang('labels.frontend.modal.new_user_note')
{{ html()->email('email') ->class('form-control mb-0') ->placeholder(__('validation.attributes.frontend.email')) ->attribute('maxlength', 191) }}
{{ html()->password('password') ->class('form-control mb-0') ->placeholder(__('validation.attributes.frontend.password')) }}
@lang('labels.frontend.passwords.forgot_password')
@if(config('access.captcha.registration'))
{{ no_captcha()->display() }} {{ html()->hidden('captcha_status', 'true') }}
@endif
@lang('labels.frontend.modal.login_now')
NEW USER, REGISTER HERE
×
{!! csrf_field() !!}
@lang('labels.frontend.modal.already_user_note')
{{ html()->text('first_name') ->class('form-control mb-0') ->placeholder(__('validation.attributes.frontend.first_name')) ->attribute('maxlength', 191) }}
{{ html()->text('last_name') ->class('form-control mb-0') ->placeholder(__('validation.attributes.frontend.last_name')) ->attribute('maxlength', 191) }}
{{ html()->email('email') ->class('form-control mb-0') ->placeholder(__('validation.attributes.frontend.email')) ->attribute('maxlength', 191) }}
{{ html()->password('password') ->class('form-control mb-0') ->placeholder(__('validation.attributes.frontend.password')) }}
{{ html()->password('password_confirmation') ->class('form-control mb-0') ->placeholder(__('validation.attributes.frontend.password_confirmation')) }}
@if(config('registration_fields') != NULL) @php $fields = json_decode(config('registration_fields')); $inputs = ['text','number','date']; @endphp @foreach($fields as $item) @if(in_array($item->type,$inputs))
@elseif($item->type == 'radio')
{{__('validation.attributes.frontend.male')}}
{{__('validation.attributes.frontend.female')}}
{{__('validation.attributes.frontend.other')}}
@elseif($item->type == 'textarea')
{{old($item->name)}}
@endif @endforeach @endif @if(config('access.captcha.registration'))
{{ no_captcha()->display() }} {{ html()->hidden('captcha_status', 'true')->id('captcha_status') }}
@endif
@lang('labels.frontend.modal.register_now')
@endif @push('after-scripts') @if (session('openModel')) @endif @if(config('access.captcha.registration')) {{ no_captcha()->script() }} @endif @endpush