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.

23 lines
479 B

2 years ago
@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