@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.first_name'))->for('first_name') }} {{ html()->text('first_name') ->class('form-control') ->placeholder(__('validation.attributes.frontend.first_name')) ->attribute('maxlength', 191) }}
{{ 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) }}
{{ 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::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