templates/bundles/SyliusAdminBundle/Customer/Show/_billing_address.html.twig line 1

Open in your IDE?
  1. <div id="attached_doctors">
  2.     <h4 class="ui top attached large header">{{ 'sylius.form.customer.billing_address'|trans }}</h4>
  3.     <div class="ui attached segment">
  4.         {% if customer.billingAddress is not null %}
  5.             {% include '@SyliusAdmin/Common/_address.html.twig' with {'address': customer.billingAddress } %}
  6.         {% endif %}
  7.     </div>
  8. </div>