@extends('layouts.app') @section('title', 'Register | '.config('app.name')) @section('content')
The first step

Create your legend.

Join thousands of warriors and begin your journey.

New warrior registration

Take your place.

@if ($errors->any())
Please check the registration details.
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('form_status'))
Success. {{ session('form_status') }}
@endif
@csrf

Use a real email because your activation link will be sent there.

@if (config('services.recaptcha.site_key'))
@else
Google reCAPTCHA needs keys. Add RECAPTCHA_SITE_KEY and RECAPTCHA_SECRET_KEY to your .env file.
@endif
@endsection @push('scripts') @if (config('services.recaptcha.site_key')) @endif @endpush