@php Theme::set('pageTitle', "Register"); @endphp
@if($backgroundImage = theme_option('authentication_register_background_image'))
{{ __('Register') }}
@endif

{{ __('Register') }}

@csrf
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
{!! apply_filters('hotel_customer_register_form_before', null) !!}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@if (is_plugin_active('captcha')) @if(Captcha::isEnabled() && get_hotel_setting('enable_recaptcha_in_register_page', 0))
{!! Captcha::display() !!}
@endif @if (get_hotel_setting('enable_math_captcha_in_register_page', 0))
{!! app('math-captcha')->input(['class' => 'form-control', 'id' => 'math-group', 'placeholder' => app('math-captcha')->getMathLabelOnly()]) !!}
@endif @endif
{!! apply_filters(BASE_FILTER_AFTER_LOGIN_OR_REGISTER_FORM, null, \Botble\Hotel\Models\Customer::class) !!}