@if (module_is_active('Account') && !empty($customer))
@if (isset($customer['billing_name']))
{{ __('Bill to') }}

{{ $customer['billing_name'] }}
{{ $customer['billing_address'] }}
{{ $customer['billing_city'] . ' , ' . $customer['billing_state'] . ' ,' . $customer['billing_zip'] }}
{{ $customer['billing_country'] }}
{{ $customer['billing_phone'] }}

{{ __('Ship to') }}

{{ $customer['shipping_name'] }}
{{ $customer['shipping_address'] }}
{{ $customer['shipping_city'] . ' , ' . $customer['shipping_state'] . ' ,' . $customer['shipping_zip'] }}
{{ $customer['shipping_country'] }}
{{ $customer['shipping_phone'] }}

@else
{{ $customer['name'] }}
{{ $customer['email'] }}
{{ __('Please Set Customer Shipping And Billing Details !') }} @if (module_is_active('Account')) {{ __('Click Here') }} @endif
@endif
{{__(' Remove')}}
@else
{{ $customer['name'] }}
{{ $customer['email'] }}
{{ __('Please Set Customer Details !') }}
{{__(' Remove')}}
@endif