@extends('layouts.app') @section('title') Register @endsection @section('content') @if ($userCount)

Register

@if ($altRegistrations)

Alternate Registrations

@foreach ($altRegistrations as $provider => $site) @if (isset($site['login']) && $site['login'])
Register With {{ ucfirst($provider) }}
@endif @endforeach @endif

Regular Registration

@csrf @honeypot
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if (!Settings::get('is_registration_open'))
@if ($errors->has('code')) {{ $errors->first('code') }} @endif
@endif
{{ Form::label('dob', 'Date of Birth', ['class' => 'col-md-4 col-form-label text-md-right']) }}
{!! Form::date('dob', null, ['class' => 'form-control']) !!}
@if ($errors->has('dob')) {{ $errors->first('dob') }} @endif
@if (config('lorekeeper.extensions.use_recaptcha')) {!! RecaptchaV3::field('register') !!} @endif
@else @include('auth._require_setup') @endif @endsection