{% extends '@CanaryCMS/layout.html.twig' %} {% set html_title = newEntry ? 'New Customer' : customer.firstName ~ ' ' ~ customer.lastName %} {% block content %} {% canary_form_theme form %} {{ form_start(form) }}
Customers

{{ html_title }}

{{ form_row(form.firstName) }}
{{ form_row(form.lastName) }}
{{ form_row(form.email) }} {{ form_row(form.abn) }} {{ form_row(form.customerCode) }} {{ form_row(form.plainPassword) }}
{{ form_row(form.company) }} {{ form_row(form.address) }} {{ form_row(form.suburb) }} {{ form_row(form.postcode) }} {{ form_row(form.state) }} {{ form_row(form.country) }} {{ form_row(form.phoneNumber) }}
{% if not newEntry %}
Date Created
{{ customer.createdAt|canary_datetime }}
Last Login
{% if customer.lastLogin %} {{ customer.lastLogin|date('j/m/Y, g:ia', 'Australia/Melbourne') }} {% else %} Never {% endif %}
{% endif %}
{{ form_end(form) }} {% endblock %}