# File lib/simple_form/wrappers/many.rb, line 23
      def render(input)
        content = "".html_safe
        options = input.options

        components.each do |component|
          next if options[component.namespace] == false
          rendered = component.render(input)
          content.safe_concat rendered.to_s if rendered
        end

        wrap(input, options, content)
      end