%= form_with(model: dictionary, local: true) do |form| %>
<%= render '/shared/errors_list', error_object: dictionary %>
<%= form.label :shortcut %>
<%= form.text_field :shortcut, class: 'form-control', placeholder: 'Wprowadź skrót' %>
<%= form.label :name %>
<%= form.text_field :name, class: 'form-control', placeholder: 'Wprowadź nazwę' %>
<%= form.label :description %>
<%= form.text_area :description, class: 'form-control', placeholder: 'Wprowadź opis' %>
<% end %>