bootstrapを導入してからレコードの編集も新規追加もできなくなってしまった。
→ 原因は、フォームのところで<form>
タグと<%= form_with %>
が重複していたから。
edit.html.erb
<form class="form-horizontal" > ← ここと
<%= form_with model: @article do |form| %>
<%= form.text_field :title %>
<%= form.submit 'Update' %>
<% end %>
</form> ← ここを消すと治った。
では class
はどこに書けばよいのか。
form_with
の <%= %>
内にclass
を書きたい。
→do
の手前に書く。
edit.html.erb
<%= form_with model: @article, class: "form-horizontal" do |form| %>