{% extends 'base.html.twig' %} {% block title %}CRM | {% trans %}Edit Employee Profile{% endtrans %}{% endblock %} {% block body %}

{% trans %} Edit{% endtrans %} {{ employee.firstName }} {{ employee.lastName }}

{{ form_start(EditEmployeeForm) }} {{ form_widget(EditEmployeeForm) }}
{{ form_end(EditEmployeeForm) }}
{% endblock %}