If you are cutting and pasting exactly from your view to your HTML it seems
kind of odd.

The 'form group' is showing up not where you put it before the form, but
before the input field.
The Submit button still says submit, not update as you indicate in your
view.

Also - your missing the f.label for your form?

The form control div is not something i ever used - i'd stick with the
basics and see if that works.

<%= form_for(@subscription) do |f| %>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.submit "Update", class: "btn btn-primary" %>
<% end %>

Do you have any other bootstrap code on this view form and is it displaying
properly?

To make sure you get it everywhere you want, I'd put your bootstrap imports
in the application.scss file (In current rails versions you don't need
css.scss, just scss)

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/CAEBjNa3hdC0Lb4-9VMhOZcQ95ms0YkdkocCM0yXsn3hQi2athg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to