I have a simple_form like this
<%= simple_form_for(@name) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :fname %>
<%= f.input :lname %>
<%= f.input :body %>
</div>
<%= f.button :submit, 'submit' %>
<% end %>
and I want to make the label horizontal and apply other bootstrap code to it but I am not able to figure out how to do it since simple_form_for do not have any divs like form_for has.
Thanks