Hello. How is it possible to align the field names and the fields themselves relative to each other? Or at least make sure that the field names are above the text field (as Created at and Updated at are performed)?

{% extends 'base.html.twig' %} {% block body %} <div class="container-fluid"> <h1 class="text-center">Создание заявки</h1> <div class="row"> <div class="col-md-4 col-md-offset-4"> {{ form_start(form) }} <div class="text-center"> {{ form_widget(form) }} </div> <input type="submit" class="btn btn-default btn-lg center-block active" value="Отправить заявку" /> {{ form_end(form) }} <a type="button" class="btn btn-link center-block active" href="{{ path('post_index') }}">Вернуться к просмотру заявок</a> </div> </div> </div> {% endblock %} Thanks for attention.