<%= f.label field_name, field_label, class: 'control-label' %>
diff --git a/app/views/branded/shared/dynamic_form/fields/_number_field.html.erb b/app/views/branded/shared/dynamic_form/fields/_number_field.html.erb
index 0b60894..94bb6c9 100644
--- a/app/views/branded/shared/dynamic_form/fields/_number_field.html.erb
+++ b/app/views/branded/shared/dynamic_form/fields/_number_field.html.erb
@@ -1,5 +1,6 @@
<%# locals: { f, field_label, field_name, multiple, classname, field_name, readonly, validation } %>
<% field_class = nil if local_assigns[:field_class].nil? %>
+<% field_label = field_label || 'No label defined' %>
<% unless multiple %>
<%= f.label field_name, field_label, class: 'control-label' %>
diff --git a/app/views/branded/shared/dynamic_form/fields/_select_field.html.erb b/app/views/branded/shared/dynamic_form/fields/_select_field.html.erb
index 1b3f217..20dd26d 100644
--- a/app/views/branded/shared/dynamic_form/fields/_select_field.html.erb
+++ b/app/views/branded/shared/dynamic_form/fields/_select_field.html.erb
@@ -1,4 +1,5 @@
<%# locals: { f, field_label, field_name, select_values, selected_value, field_class, readonly, validation } %>
+<% field_label = field_label || 'No label defined' %>
<%= f.label field_name, field_label, class: 'control-label' %>
diff --git a/app/views/branded/shared/dynamic_form/fields/_simple_multiple_field.html.erb b/app/views/branded/shared/dynamic_form/fields/_simple_multiple_field.html.erb
index 430e5b0..97e5dfd 100644
--- a/app/views/branded/shared/dynamic_form/fields/_simple_multiple_field.html.erb
+++ b/app/views/branded/shared/dynamic_form/fields/_simple_multiple_field.html.erb
@@ -1,4 +1,5 @@
<%# locals: { f, field_values, readonly, field_label, field_properties, field_name } %>
+<% field_label = field_label || 'No label defined' %>
<%= f.label field_name, field_label, class: 'control-label' %>
diff --git a/app/views/branded/shared/dynamic_form/fields/_text_field.html.erb b/app/views/branded/shared/dynamic_form/fields/_text_field.html.erb
index e93d1e3..d71f2d4 100644
--- a/app/views/branded/shared/dynamic_form/fields/_text_field.html.erb
+++ b/app/views/branded/shared/dynamic_form/fields/_text_field.html.erb
@@ -1,4 +1,5 @@
<%# locals: { f, field_label, field_name, multiple, classname, field_name, readonly, validation } %>
+<% field_label = field_label || 'No label defined' %>
<% unless multiple %>
<%= f.label field_name, field_label, class: 'control-label' %>