This commit is contained in:
ilmedova 2022-11-22 14:01:44 +05:00
commit 1520a4dcd3
1 changed files with 8 additions and 8 deletions

View File

@ -1,31 +1,31 @@
<div class="form-group">
<label for="company"><small>{{ trans('app.company.name') }}</small></label>
<h6><strong>{{ $application->account->profile->name ?? null }}</strong></h6>
<h6><strong>{{ $account->profile->name ?? null }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>{{ trans('app.company.short_name') }}</small></label>
<h6><strong>{{ $application->account->profile->short_name ?? null }}</strong></h6>
<h6><strong>{{ $account->profile->short_name ?? null }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>{{ trans('app.company.registration_number') }}</small></label>
<h6><strong>{{ $application->account->profile->registration_number ?? null }}</strong></h6>
<h6><strong>{{ $account->profile->registration_number ?? null }}</strong></h6>
</div>
@if (isset($application->account->profile->registration_date))
@if (isset($account->profile->registration_date))
<div class="form-group">
<label for="company"><small>{{ trans('app.company.registration_date') }}</small></label>
<h6><strong>{{ Carbon\Carbon::parse($application->account->profile->registration_date)->format('d.m.Y') }}</strong>
<h6><strong>{{ Carbon\Carbon::parse($account->profile->registration_date)->format('d.m.Y') }}</strong>
</h6>
</div>
@endif
<div class="form-group">
<label for="company"><small>{{ trans('app.company.state_registration_agency') }}</small></label>
<h6><strong>{{ $application->account->profile->state_registration_agency ?? null }}</strong></h6>
<h6><strong>{{ $account->profile->state_registration_agency ?? null }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>{{ trans('app.company.registration_place') }}</small></label>
<h6><strong>{{ $application->account->profile->registration_place ?? null }}</strong></h6>
<h6><strong>{{ $account->profile->registration_place ?? null }}</strong></h6>
</div>
<div class="form-group">
<label for="company"><small>{{ trans('app.company.registration_address') }}</small></label>
<h6><strong>{{ $application->account->profile->registration_address ?? null }}</strong></h6>
<h6><strong>{{ $account->profile->registration_address ?? null }}</strong></h6>
</div>