{% extends 'base_admin.html.twig' %} {% form_theme form 'bootstrap_4_layout.html.twig' %} {% block body %}
{% for message in app.flashes('notice') %} {% endfor %} {% for message in app.flashes('error') %} {% endfor %} {% if form_errors(form) %} {% endif %}
{% if form is not null %}
{{ form_start(form, {'attr':{novalidate:'novalidate', id:'form'}}) }} {{ form_widget(form.seller) }} {{ form_end(form) }}
{% endif %}
{% for shipment in shipments %} {% endfor %}
Order id Seller First Name Last Name Address one Address two Post code City State Country Confirm
{{ shipment.orderId }} {{ shipment.company }} {{ shipment.firstName }} {{ shipment.lastName }} {{ shipment.addressOne }} {{ shipment.addressTwo }} {{ shipment.postCode }} {{ shipment.city }} {{ shipment.state }} {{ shipment.country }}
{% endblock %} {% block javascripts %} {% endblock %}