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.
22 lines
479 B
22 lines
479 B
@if (session()->has('address'))
|
|
|
|
@php
|
|
$address = session()->get('address')
|
|
@endphp
|
|
<ul>
|
|
<li>
|
|
<span>{{ translate('Name') }}</span>
|
|
<strong>{{ $address['contact_person_name'] }}</strong>
|
|
</li>
|
|
<li>
|
|
<span>{{ translate('contact') }}</span>
|
|
<strong>{{ $address['contact_person_number'] }}</strong>
|
|
</li>
|
|
</ul>
|
|
<div class="location">
|
|
<i class="tio-poi"></i>
|
|
<span>
|
|
{{ $address['address'] }}
|
|
</span>
|
|
</div>
|
|
@endif
|
|
|