@extends($layout) @section('content')
{!! $tpl->displayNotification() !!} @foreach ($allUsers as $row) @endforeach
{!! __('label.name') !!} {!! __('label.email') !!} {!! __('label.client') !!} {!! __('label.role') !!} {!! __('label.status') !!} {!! __('headlines.twoFA') !!}
{!! sprintf(__('text.full_name'), e($row['firstname']), e($row['lastname'])) !!} {{ $row['username'] }} {{ $row['clientName'] }} {!! __('label.roles.' . $roles[$row['role']]) !!} @if (strtolower($row['status']) == 'a') {!! __('label.active') !!} @elseif (strtolower($row['status']) == 'i') {!! __('label.invited') !!} @else {!! __('label.deactivated') !!} @endif @if ($row['twoFAEnabled']) {!! __('label.yes') !!} @else {!! __('label.no') !!} @endif {!! __('links.delete') !!}
@once @push('scripts') @endpush @endonce @endsection