2         <h2>{% trans %}Add{% endtrans %}</h2>
 
   3         {{ form_start(forms.location) }}
 
   5                         {{ form_row(forms.location.title) }}
 
   7                         {{ form_row(forms.location.description) }}
 
   9                         {{ form_row(forms.location.address) }}
 
  11                         {{ form_row(forms.location.zipcode) }}
 
  13                         {{ form_row(forms.location.city) }}
 
  15                         {{ form_row(forms.location.latitude) }}
 
  17                         {{ form_row(forms.location.longitude) }}
 
  19                         {{ form_row(forms.location.indoor) }}
 
  21                         {{ form_row(forms.location.hotspot) }}
 
  23                         {{ form_row(forms.location.submit) }}
 
  26                 {# render csrf token etc .#}
 
  27                 <footer style="display:none">{{ form_rest(forms.location) }}</footer>
 
  28         {{ form_end(forms.location) }}