Your suggestion is totally anonymous. No identifying information will be saved with it.

<%= form_with(model: suggestion) do |form| %> <%= content_tag :div, class: ['mb-3'] do %> <%= form.label :title, class: 'form-label' %> * <%= form.text_field :title, class: 'form-control', required: true %> <% end %> <%= content_tag :div, class: ['mb-3'] do %> <%= form.label :body, class: 'form-label' %> * <%= form.text_area :body, class: 'form-control', rows: 6, required: true %> <% end %> <%= render 'shared/form_buttons', form: form, back_link: root_path %> <% end %>