I am not sure, how to implement quite simple text field, into the configured form template. I have configured individual fields at yml file.
But what if I want, in the middle of the form, some text formatted informations (fetching data from another entities).
I have learned how to make custom edit template for the entities, by overriding "app/Resources/views/easy_admin/Entity/edit.html.twig".
But it allows me to change the template only around the form fields. The actual form is rendered by "{{ form(form) }}".
So, I need to edit this form() creation or customize the template somehow.
Is the only solution for this custom text field, to create custom form field type in Symfony? Or are there other methods to achieve this?