{{ __('People who can sign in to your company\'s Flamnix account.') }}
{{ __('There\'s no email delivery set up yet, so this temporary password is shown only once. Copy it and share it with :name directly — they should change it after logging in.', ['name' => $credentials['name']]) }}
{{ __('No users yet.') }}
| {{ __('Name') }} | {{ __('Email') }} | {{ __('Role') }} | {{ __('Status') }} | |
|---|---|---|---|---|
| {{ $listedUser->name }} @if ($listedUser->id === auth()->id()) {{ __('(you)') }} @endif | {{ $listedUser->email }} | {{ $listedUser->roles->pluck('name')->join(', ') ?: '—' }} | @if ($listedUser->trashed()) {{ __('Deactivated') }} @else {{ __('Active') }} @endif |
@unless ($listedUser->trashed())
{{ __('Edit') }}
@if ($listedUser->id !== auth()->id())
@endif
@else
@endunless
|