<%= simple_form_for(@blog_post) do |f| %> <%= f.error_notification %>
<%= f.input :title %> <%= f.input :slug %> <%= f.input :description %> <%= f.input :content, class: 'summernote', id: 'post_content' %> <%= f.input :published %>
<%= f.button :submit %>
<% end %>