@if($isActive)

{{ __('devicePage.assign_user') }}

1
2
3

1.

Select the user to assign to the device.

@foreach($unassignedUsers as $user) @endforeach
ID Name Email Action
{{ $user->user_id }} {{ $user->name }} {{ $user->email }}

Choose the role of the user you wish to assign to the device

Final Step

Press next to complete assignment.

@if($currentStep == 1) @if(!$selectedUserId)
Please select a user before proceeding.
@endif @elseif($currentStep == 2) @if(!$selectedRole)
Please select a role before proceeding.
@endif @endif
@endif