@extends('layouts.guest') @section('title', 'Activate your account – ' . \App\Models\Setting::get('system_short_name', 'TRACE')) @section('content')

Activate your account

@if(($invite ?? null) && $invite->email)

You've been invited as {{ ucwords(str_replace('_', ' ', $invite->role)) }}. Just confirm your name — there's no password to choose.

@else

Enter your details and the invite code you were given.

@endif @if($errors->any())
@endif
@csrf
@if($lockEmail ?? false)
Fixed by your invitation.
@endif
Your role is determined by this code.
No password required. To sign in, enter your email and we'll send a six-digit code.

Already activated? Sign in

@endsection