@component("components.inputs.input", ["id" => "company", "label" => __("universal.company"), "value" => $endCustomerAddress->organization_name ?? "" , "mandatory" => false]) @endcomponent
@component("components.inputs.input", ["id" => "first_name", "label" => __("universal.first_name"), "value" => $endCustomerAddress->first_name ?? "", "mandatory" => true]) @endcomponent
@component("components.inputs.input", ["id" => "last_name", "label" => __("universal.last_name"), "value" => $endCustomerAddress->last_name ?? "", "mandatory" => true]) @endcomponent
@component("components.inputs.input", ["id" => "street", "label" => __("universal.street_and_house_no"), "value" => $endCustomerAddress->street_address_1 ?? "", "mandatory" => true]) @endcomponent
@component("components.inputs.input", ["id" => "postal_code", "label" => __("universal.postal_code"), "value" => $endCustomerAddress->postal_code ?? "", "mandatory" => true]) @endcomponent
@component("components.inputs.input", ["id" => "city", "label" => __("universal.city"), "value" => $endCustomerAddress->city ?? "", "mandatory" => true]) @endcomponent
@component("components.selects.select", ["id" => "country", "label" => __("universal.country"), "mandatory" => true]) @slot("options") @if(!empty($endCustomerAddress->country)) @else @endif @foreach($countries AS $country) @endforeach @endslot @endcomponent
@component("components.inputs.input", ["id" => "phone", "label" => __("universal.phone"), "value" => $endCustomerAddress->phone_no ?? ""]) @endcomponent
@component("components.inputs.input", ["id" => "email", "label" => __("universal.email"), "value" => $endCustomerAddress->email ?? "", "mandatory" => true]) @endcomponent