diff --git a/bootstrapform/templates/bootstrapform/field.html b/bootstrapform/templates/bootstrapform/field.html
index 7791c28..cecb1b7 100644
--- a/bootstrapform/templates/bootstrapform/field.html
+++ b/bootstrapform/templates/bootstrapform/field.html
@@ -1,21 +1,37 @@
{% load bootstrap %}
{% if field|is_checkbox %}
-
-
+
+
- {% for error in field.errors %}
-
{{ error }}
- {% endfor %}
+ {% for error in field.errors %}
+
{{ error }}
+ {% endfor %}
- {% if field.help_text %}
-
- {{ field.help_text|safe }}
-
- {% endif %}
-
+ {% if field.help_text %}
+
+ {{ field.help_text|safe }}
+
+ {% endif %}
+
+ {% else %}{% if field|is_radio %}
+
+
+
+ {% for error in field.errors %}
+
{{ error }}
+ {% endfor %}
+
+ {% if field.help_text %}
+
+ {{ field.help_text|safe }}
+
+ {% endif %}
+
{% else %}
@@ -33,5 +49,5 @@
{% endif %}
- {% endif %}
+ {% endif %}{% endif %}