@extends('frontend.layouts.app') @section('title', app_name() . ' | '.__('labels.frontend.auth.register_box_title')) @push('after-styles') @endpush @section('content')
{{ __('labels.frontend.auth.register_box_title') }}
{{ html()->form('POST', route('frontend.auth.register.post'))->open() }}
{{ html()->label(__('validation.attributes.frontend.name').'*')->for('name') }} {{ html()->text('name') ->class('form-control') ->placeholder(__('validation.attributes.frontend.name')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.frontend.mobile').'*')->for('mobile') }} {{ html()->text('mobile') ->class('form-control') ->placeholder(__('validation.attributes.frontend.mobile')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.frontend.nrc').'*')->for('nrc') }} {{ html()->text('nrc') ->class('form-control') ->placeholder(__('validation.attributes.frontend.nrc')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.frontend.gender').'*')->for('gender') }}
{{ html()->label(__('validation.attributes.frontend.address').'*')->for('address') }} {{ html()->textarea('address') ->class('form-control') ->placeholder(__('validation.attributes.frontend.address')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.frontend.timezone').'*')->for('timezone') }}
{{ html()->label(__('validation.attributes.frontend.email'))->for('email') }} {{ html()->email('email') ->class('form-control') ->placeholder(__('validation.attributes.frontend.email')) ->attribute('maxlength', 191) }}
{{ html()->label(__('validation.attributes.frontend.password').'*')->for('password') }} {{ html()->password('password') ->class('form-control') ->placeholder(__('validation.attributes.frontend.password')) ->required() }}
{{ html()->label(__('validation.attributes.frontend.password_confirmation').'*')->for('password_confirmation') }} {{ html()->password('password_confirmation') ->class('form-control') ->placeholder(__('validation.attributes.frontend.password_confirmation')) ->required() }}
@if (config('access.captcha.registration'))
{!! Captcha::display() !!} {{ html()->hidden('captcha_status', 'true') }}
@endif
{{ form_submit(__('labels.frontend.auth.register_button')) }}
{{ html()->form()->close() }}
{!! $socialiteLinks !!}
@endsection @push('after-scripts') @if (config('access.captcha.registration')) {!! Captcha::script() !!} @endif @endpush