Skip to content

Commit

Permalink
Moved address down further, fixed broken HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Jul 21, 2020
1 parent b750f47 commit eed41e4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions resources/views/users/view.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@
<td>{{ $user->present()->fullName() }}</td>
</tr>

<tr>
<td class="text-nowrap">{{ trans('admin/users/table.username') }}</td>
<td>{{ $user->username }}</td>
</tr>
@if (($user->address) || ($user->city) || ($user->state) || ($user->country))
<tr>
<td class="text-nowrap">{{ trans('general.address') }}</td>
Expand All @@ -159,14 +163,10 @@
@if ($user->country)
{{ $user->country }}
@endif
</td>
</tr>

@endif

<tr>
<td class="text-nowrap">{{ trans('admin/users/table.username') }}</td>
<td>{{ $user->username }}</td>
</tr>

<tr>
<td class="text-nowrap">{{ trans('general.groups') }}</td>
<td>
Expand Down

0 comments on commit eed41e4

Please sign in to comment.