You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.9 KiB
58 lines
1.9 KiB
<div class="panel panel-default">
|
|
<div class="panel-heading"><h3 class="panel-title">{{ trans('user.profile') }}</h3></div>
|
|
<div class="panel-body text-center">
|
|
{{ userPhoto($user, ['style' => 'width:100%;max-width:300px']) }}
|
|
</div>
|
|
<table class="table">
|
|
<tbody>
|
|
<tr>
|
|
<th class="col-sm-4">{{ trans('user.name') }}</th>
|
|
<td class="col-sm-8">{{ $user->profileLink() }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{{ trans('user.nickname') }}</th>
|
|
<td>{{ $user->nickname }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{{ trans('user.gender') }}</th>
|
|
<td>{{ $user->gender }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{{ trans('user.dob') }}</th>
|
|
<td>{{ $user->dob }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{{ trans('user.birth_order') }}</th>
|
|
<td>{{ $user->birth_order }}</td>
|
|
</tr>
|
|
@if ($user->dod)
|
|
<tr>
|
|
<th>{{ trans('user.dod') }}</th>
|
|
<td>{{ $user->dod }}</td>
|
|
</tr>
|
|
@endif
|
|
<tr>
|
|
<th>{{ trans('user.age') }}</th>
|
|
<td>
|
|
@if ($user->age)
|
|
{!! $user->age_string !!}
|
|
@endif
|
|
</td>
|
|
</tr>
|
|
@if ($user->email)
|
|
<tr>
|
|
<th>{{ trans('user.email') }}</th>
|
|
<td>{{ $user->email }}</td>
|
|
</tr>
|
|
@endif
|
|
<tr>
|
|
<th>{{ trans('user.phone') }}</th>
|
|
<td>{{ $user->phone }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{{ trans('user.address') }}</th>
|
|
<td>{!! nl2br($user->address) !!}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|