{% extends "base.html.twig" %} {% trans_default_domain 'www' %} {% set t_root = 'coach.journey' %} {% block title %}{{ (t_root ~ '.title')|trans({'%name%': client.fullname})|raw }}{% endblock %} {% block page_title %} {# {{ (t_root ~ '.title')|trans({'%client%': client.fullname, "%journey%": current.name})|raw }} #} {{ client.fullname }} {# {{ 'coach.client.actions.edit'|trans }} #} {# {{ 'coach.client.actions.coach'|trans }} #} > {{ current.name }} {# {{ 'coach.client.actions.coach'|trans }} #} {% endblock %} {% block body %}
{# {{ dump(form) }} #} {{ form_start(form) }}
{{ form_errors(form) }}
{{ form_label(form.name, t_root ~ '.fields.@name.label', { 'label_attr': {'class': 'form-label'} }) }}
{{ form_errors(form.name) }}
{{ form_widget(form.name, { 'attr': {'class': 'form-control', 'placeholder': t_root ~ '.fields.@name.placeholder'} }) }}
{{ form_end(form) }}
{% endblock %}