Fixed #8247 - added notes field to user details display

This commit is contained in:
snipe 2020-07-20 14:29:32 -07:00
parent daf748e531
commit b905154373
No known key found for this signature in database
GPG key ID: 10BFFDA3ED34B5AC

View file

@ -285,6 +285,13 @@
@endif
@if ($user->notes)
<tr>
<td class="text-nowrap">{{ trans('admin/users/table.notes') }}</td>
<td>{{ $user->notes }}</td>
</tr>
@endif
</table>
</div>