@extends('layouts.admin') @section('title', 'Registration Links - ' . $event->name) @section('content')

Registration Links

Back to Events

{{ $event->name }}

{!! $event->description !!}

👥 {{ $event->users->count() }} users
@if($event->allow_registration)

Registration Enabled

Users can register for this event using the links below.

New User Registration

For users who don't have an account yet:

{!! QrCode::size(150)->generate(url('/register/event/' . $event->registration_token)) !!}

Scan to register for this event

Existing User Login

For users who already have an account:

{!! QrCode::size(150)->generate(url('/login/event/' . $event->registration_token)) !!}

Scan to login and join this event

Registration Token Information

Token: {{ $event->registration_token }}

How to Use These Links

Registration Link

  • Share with new users who need to create an account
  • Automatically associates them with this event
  • If email already exists for same client, logs them in
  • Prevents cross-client account conflicts

Login Link

  • Share with existing users who have accounts
  • Automatically associates them with this event
  • Only works for users in the same client organization
  • Maintains existing user data and progress
@else

Registration Disabled

Registration is currently disabled for this event. Enable registration in the event settings to generate registration links.

Edit Event Settings
@endif
@endsection