@extends('layouts.app') @section('content')
@if (config('app.registration_enabled'))
@csrf

Sign Up and Play

Step 1 of 2: Create Account

Choose a name for your {{ config('app.name') }} character
Use 3-20 alphanumeric characters: A-Z, a-z, 0-9, no spaces
  @error('username') {{ $message }} @enderror
@if (config('app.invite_keys_required'))
{{ config('app.name') }} requires a invite key
You have to be invited.
  @error('invite_key') {{ $message }} @enderror
@endif
Choose your {{ config('app.name') }} password
4-25 characters, no spaces
  @error('password') {{ $message }} @enderror
 
Provide your parent's email address
This will allow you to recover a lost password
  @error('email') {{ $message }} @enderror
@else

Registration closed

Sorry, we're not taking new users at the moment. Check back in a bit.

@endif
@endsection