Replace name for username in list view
This commit is contained in:
parent
6093119dde
commit
4c8c5fa27f
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@
|
|||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ __('app.user.name') }}</th>
|
||||
<th>{{ __('app.user.username') }}</th>
|
||||
<th>{{ __('app.apps.password') }}</th>
|
||||
<th>{{ __('app.apps.autologin_url') }}</th>
|
||||
<th class="text-center" width="100">{{ __('app.settings.edit') }}</th>
|
||||
|
@ -30,7 +30,7 @@
|
|||
@if($users->first())
|
||||
@foreach($users as $user)
|
||||
<tr>
|
||||
<td>{{ $user->name }}</td>
|
||||
<td>{{ $user->username }}</td>
|
||||
<td><i class="fa {{ (!is_null($user->password) ? 'fa-check' : 'fa-times') }}" /></td>
|
||||
<td>
|
||||
@if(is_null($user->autologin))
|
||||
|
|
Loading…
Reference in a new issue