<%= form.label :name %>
<%= form.text_field :name, required: true, autocomplete: 'off', autocapitalize: 'on' %>
<%= form.label :description %>
<%= form.rich_textarea :description %>
<%= form.label :body, id: 'search-body-label', class: 'hidden' %>
<%= form.text_field :body, "data-action": "keydown.enter->search#load", "data-search-target": "body", placeholder: 'Search body' %>
<%= I18n.t('searches.save') %>
<%= form.check_box :shared %>
<%= form.label :shared, I18n.t('searches.public') %>