@extends('layouts.nova') @section('content')

Create Account

Start with your email. You’ll choose a password and username after verification.

@if($errors->has('oauth'))
{{ $errors->first('oauth') }}
@endif @if($errors->has('bot'))
{{ $errors->first('bot') }}
@endif @include('auth.partials.social-login', ['dividerLabel' => 'or register with email'])
@csrf @php $captchaProvider = $captcha['provider'] ?? 'turnstile'; $captchaSiteKey = $captcha['siteKey'] ?? ''; @endphp
@if((($requiresCaptcha ?? false) || session('bot_captcha_required')) && $captchaSiteKey !== '') @if($captchaProvider === 'recaptcha')
@elseif($captchaProvider === 'hcaptcha')
@else
@endif @endif

Already registered? Sign in

@if((($requiresCaptcha ?? false) || session('bot_captcha_required')) && (($captcha['siteKey'] ?? '') !== '') && (($captcha['scriptUrl'] ?? '') !== '')) @endif @include('partials.bot-fingerprint-script') @endsection