32 lines
1.5 KiB
PHP
32 lines
1.5 KiB
PHP
<div class="form-group">
|
|
<label for="company"><small>{{ trans('app.company.name') }}</small></label>
|
|
<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>{{ $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>{{ $account->profile->registration_number ?? null }}</strong></h6>
|
|
</div>
|
|
@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($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>{{ $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>{{ $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>{{ $account->profile->registration_address ?? null }}</strong></h6>
|
|
</div>
|