@extends('frontend.layouts.app')
@section('title', app_name() . ' | ' . __('labels.frontend.auth.register_box_title'))
@section('content')
{{ html()->form('POST', route('frontend.auth.register.post'))->attribute('enctype', 'multipart/form-data')->open() }}
{{ html()->label(__('validation.attributes.frontend.first_name'))->for('first_name') }} (*)
{{ html()->text('first_name')
->class('form-control')
->placeholder(__('validation.attributes.frontend.first_name'))
->attribute('maxlength', 191)
->required() }}
{{ html()->label(__('validation.attributes.frontend.last_name'))->for('last_name') }} (*)
{{ html()->text('last_name')
->class('form-control')
->placeholder(__('validation.attributes.frontend.last_name'))
->attribute('maxlength', 191)
->required() }}
{{ html()->label(__('validation.attributes.frontend.email'))->for('email') }} (*)
{{ html()->email('email')
->class('form-control')
->placeholder(__('validation.attributes.frontend.email'))
->attribute('maxlength', 191)
->required() }}
{{ 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() }}
{{ html()->label(__('validation.attributes.frontend.company_service_desc'))->for('company_service_desc') }} (*)
{{ html()->textarea('company_service_desc')
->class('form-control')
->placeholder(__('validation.attributes.frontend.company_service_desc'))
->attribute('maxlength', 300)
->required() }}
{{ html()->label(__('validation.attributes.frontend.cities'))->for('cities') }} (*)
(*)
@if(config('access.captcha.registration'))
{!! Captcha::display() !!}
{{ html()->hidden('captcha_status', 'true') }}
@endif
{{ html()->hidden('user_type',3) }}
{{ html()->form()->close() }}
@endsection
@push('after-scripts')
@if(config('access.captcha.registration'))
{!! Captcha::script() !!}
@endif
@endpush