| {{ __('Company name') }}: |
{{ $user->account->company }} |
| {{ __('Salutation') }}: |
{{ \App\Services\HTMLHelper::getSalutationLang($user->account->salutation) }} |
| {{ __('First name') }}: |
{{ $user->account->first_name }} |
| {{ __('Last name') }}: |
{{ $user->account->last_name }} |
| {{ __('Street') }} / {{ __('House number') }}: |
{{ $user->account->address }} |
| {{ __('Flat Building optional') }}: |
{{ $user->account->address_2 }} |
| {{ __('Postcode') }}: |
{{ $user->account->zipcode }} |
| {{ __('City') }}: |
{{ $user->account->city }} |
| {{ __('Country') }}: |
{{ $user->account->country->getLocated() }} |
| {{ __('Date of birth') }}: |
{{ $user->account->birthday }} |
| {{ __('Phone') }}: |
{{ $user->account->getPhoneFull() }} |
| {{ __('Mobile Phone') }}: |
{{ $user->account->getMobilFull() }} |
| {{ __('E-Mail') }}: |
{{ $user->email }} |
@if($user->account->same_as_billing)
| {{__('email.checkout_mail_same_address')}} |
@else
| {{ __('account.delivery_address') }} |
| {{ __('Company name') }}: |
{{ $user->account->shipping_company }} |
| {{ __('Salutation') }}: |
{{ \App\Services\HTMLHelper::getSalutationLang($user->account->shipping_salutation) }} |
| {{ __('First name') }}: |
{{ $user->account->shipping_firstname }} |
| {{ __('Last name') }}: |
{{ $user->account->shipping_lastname }} |
| {{ __('Street') }} / {{ __('House number') }}: |
{{ $user->account->shipping_address }} |
| {{ __('Flat Building optional') }}: |
{{ $user->account->shipping_address_2 }} |
| {{ __('Postcode') }}: |
{{ $user->account->shipping_zipcode }} |
| {{ __('City') }}: |
{{ $user->account->shipping_city }} |
| {{ __('Country') }}: |
{{ $user->account->shipping_country->getLocated() }} |
| {{ __('Phone') }}: |
{{ $user->account->getShippingPhoneFull() }} |
@endif