%= form_with(model: comment, local: true) do |form| %>
<% if comment.errors.any? %>
<%= pluralize(comment.errors.count, "error") %> prohibited this comment from being saved:
<% comment.errors.full_messages.each do |message| %>
- <%= message %>
<% end %>
<% end %>
<%= form.label :banal_brainstorm %>
<%= form.text_field :banal_brainstorm %>
<%= form.label :comment_text %>
<%= form.text_area :comment_text %>
<%= form.label :parent_id %>
<%= form.number_field :parent_id %>
<%= form.submit %>
<% end %>