# File lib/formtastic-bootstrap/inputs/base/labelling.rb, line 18
        def label_html
          if render_label?
            template.content_tag(:span, :class => 'form-label') do
              builder.label(input_name, label_text, label_html_options)
            end
          else
            "".html_safe
          end
        end