{#

Start Station ID: {{ start_station ? start_station.id : 'none' }}

#}
{{ form_start(form) }} {{ form_row(form._token) }}
{{ form_label(form.name, null, {'label_attr': {'class': 'form-label'}}) }} {{ form_widget(form.name, {'attr': {'class': 'form-widget'}}) }} {{ form_errors(form.name) }}
{{ form_label(form.vehicle_type, null, {'label_attr': {'class': 'form-label'}}) }} {{ form_widget(form.vehicle_type, {'attr': {'class': 'form-widget form-select'}}) }} {{ form_errors(form.vehicle_type) }}
{{ form_label(form.start_station, null, {'label_attr': {'class': 'form-label'}}) }} {{ form_widget(form.start_station, {'attr': {'class': 'form-widget'}}) }} {{ form_errors(form.start_station) }}
{% if form.legs is defined %}
{{ form_label(form.legs, 'legs'|trans, {'label_attr': {'class': 'form-label'}}) }}
{% endif %} {{ form_end(form, { 'render_rest': false }) }}