I have a form that have a lot of fields from array (not from model or object). How can I validate presence of this fields?
<%= simple_form_for :solve, :url => solve_problem_path do |f| %>
<% @input_variables.each do |label| %>
<%= f.input label %>
<% end %>
<div class="form-actions">
<%= link_to t('.back', :default => t("helpers.links.back")),
problems_path, :class => 'btn' %>
<%= f.submit 'Solve', :class => 'btn btn-primary' %>
<%= link_to t('.problem_description', :default => t("helpers.links.problem_description")),
problem_path(@problem), :class => 'btn' %>
</div>
<% end %>