@extends('layouts.admin') @section('title', 'Send to Kiosk') @section('content')

Kiosk session ready for {{ $firstName }}

This link is valid for 30 minutes (expires {{ $expiresAt->format('g:i A') }}). Open it on the kiosk tablet — scan the QR code with the tablet's camera, or type the link into its browser. Your own session here stays exactly where it is.

Tablet will show

@if ($assessmentPacket)

Assigned assessment packet

@foreach ($assessmentPacket->items as $item)

Step {{ $item->sequence }}

{{ $item->assessmentTemplate?->name ?? 'Assessment' }}

@endforeach
@else

{{ $assessmentTemplate->name }} v{{ $assessmentTemplate->version }}

@if ($assignedResponse) Uses assigned response #{{ $assignedResponse->id }}. @else Starts a new response for this questionnaire. @endif

@endif @if ($conditionalFollowUpTemplate)

{{ $conditionalFollowUpTemplate->name }} opens automatically if PHQ-2 is a positive depression screen (score 3+).

@endif
Done
@endsection @push('scripts') @vite(['resources/js/kiosk-link.js']) @endpush