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

Register with {{ $provider }}

@csrf {!! Form::hidden('token', $token ?? old('token')) !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @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