36 lines
1.5 KiB
PHP
36 lines
1.5 KiB
PHP
<div class="form-group">
|
|
<label for="company"><small>@lang('app.application.profile_type')</small></label>
|
|
<h6><strong>Entreprenuer</strong></h6>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="company"><small>Country</small></label>
|
|
<h6><strong>{{ $application->account->country->name ?? null }}</strong></h6>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="company"><small>Name</small></label>
|
|
<h6><strong>{{ $application->account->profile->name ?? null }}</strong></h6>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="company"><small>Surname</small></label>
|
|
<h6><strong>{{ $application->account->profile->surname ?? null }}</strong></h6>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="company"><small>Patronomic</small></label>
|
|
<h6><strong>{{ $application->account->profile->patronomic_name ?? null }}</strong></h6>
|
|
</div>
|
|
@if (isset($application->account->profile->date_of_birth))
|
|
<div class="form-group">
|
|
<label for="company"><small>Date of birth</small></label>
|
|
<h6><strong>{{ Carbon\Carbon::parse($application->account->profile->date_of_birth)->format('d.m.Y') }}</strong>
|
|
</h6>
|
|
</div>
|
|
@endif
|
|
<div class="form-group">
|
|
<label for="company"><small>Birthplace</small></label>
|
|
<h6><strong>{{ $application->account->profile->birth_place ?? null }}</strong></h6>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="company"><small>Registration address</small></label>
|
|
<h6><strong>{{ $application->account->profile->registration_address ?? null }}</strong></h6>
|
|
</div>
|