Here is the current layout of my form: https://i.sstatic.net/2vZjl.jpg
You may notice that the labels are not properly aligned. I would like them to appear like this: https://i.sstatic.net/gm39D.jpg
Below is the code for all the input fields:
<%= simple_form_for [@company], html: { class: 'form-horizontal' }, wrapper: :horizontal_form do |f| %>
<div class="form-group">
<label class="col-md-1 control-label"></label>
<div class="col-md-9">
<%= f.input :name, :label => "Name of Company" %>
</div>
</div>
<% end %>