{% extends 'admin/layout.html.twig' %} {% block title %}{{ is_new ? 'New' : 'Edit' }} Customer - KitscoApp{% endblock %} {% block page_title %}{{ is_new ? 'New Customer' : 'Edit: ' ~ customer.name }}{% endblock %} {% block content %}

Customer Information

{{ form_start(form) }}
{{ form_row(form.name) }}
{{ form_row(form.contactPerson) }}
{{ form_row(form.contactEmail) }}
{{ form_row(form.phone) }}

Address

{{ form_row(form.poBox) }}
{{ form_row(form.city) }}
{{ form_row(form.country) }}
{{ form_row(form.address) }}

{{ form_row(form.notes) }}
Cancel
{{ form_end(form) }}
{% endblock %}