@extends('layouts.app') @section('title', 'User — ' . $user['username']) @section('content')
← Back to users

{{ $user['username'] }}

{{ $user['display_name'] }}

Edit @unless ($user['protected']) Reset Password @endunless
@include('partials.flash')

LDAP Information

Email (LDAP)
{{ $user['email'] !== '—' ? $user['email'] : '—' }}
Other Email
{{ $user['other_email'] !== '' ? $user['other_email'] : '—' }}
Phone
{{ $user['phone'] !== '' ? $user['phone'] : '—' }}
Status
{{ $user['enabled'] ? 'Enabled' : 'Disabled' }}
Last Logon
{{ $user['last_logon'] ?? '—' }}
@if ($user['admin_note'] !== '')
Admin Note
{{ $user['admin_note'] }}
@endif @if (count($user['groups']) > 0)
Groups
@foreach ($user['groups'] as $group) {{ $group }} @endforeach
@endif
@include('partials.activity-log', ['activityLogs' => $activityLogs, 'activityError' => $activityError ?? null])
@endsection