<%= form_with model: @blog_post, id: "blog_post_form" do |f| %>

<%= title %>

<%= f.text_field :title, placeholder: t(".title") %> <%= f.rich_text_area :content %> <%= f.label :slug %> <%= f.text_field :slug %> <%= f.label :published %> <%= f.check_box :published %> <%= f.submit button_text %> <% end %>