Replace name for username in list view

This commit is contained in:
Chris 2018-10-16 14:28:12 +01:00
parent 6093119dde
commit 4c8c5fa27f

View file

@ -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))