@extends('frontend.layouts.app') @section('title', app_name() . ' | ' . __('labels.frontend.auth.register_box_title')) @section('content')
@lang('labels.frontend.auth.register_box_title')
{{ html()->form('POST', route('frontend.auth.register.post'))->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() }}
@if(config('access.captcha.registration'))
@captcha {{ html()->hidden('captcha_status', 'true') }}
@endif
{{ form_submit(__('labels.frontend.auth.register_button')) }}
{{ html()->form()->close() }}
@include('frontend.auth.includes.socialite')
@endsection @push('after-scripts') @if(config('access.captcha.registration')) @captchaScripts @endif @endpush