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

Create Account

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

@include('auth.partials.help-links', [ 'title' => 'Need help before you start?', 'description' => 'Use the signup and login guide if you want a clearer view of verification, recovery, or what happens after the first account step.', ]) @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
@if(($turnstile['enabled'] ?? false) && (($turnstile['siteKey'] ?? '') !== ''))

Complete the security check before continuing.

@endif

Already registered? Sign in

@if(($turnstile['enabled'] ?? false) && (($turnstile['siteKey'] ?? '') !== '') && (($turnstile['scriptUrl'] ?? '') !== '')) @endif @include('partials.bot-fingerprint-script') @endsection