<%= form.label :title, "Title", class: "crayons-field__label" %>
<%= form.text_field :title, class: "crayons-textfield" %>
<%= form.label :description, "Description", class: "crayons-field__label" %>
<%= form.text_field :description, class: "crayons-textfield" %>
<%= form.label :badge_image, "Badge image", class: "crayons-field__label" %>
<%= form.file_field :badge_image, class: "" %>
<%= form.label :credits_awarded, "Credits awarded", class: "crayons-field__label" %>
<%= form.text_field :credits_awarded, class: "crayons-textfield" %>
<%= form.check_box :allow_multiple_awards, class: "crayons-checkbox" %>
<%= form.label :allow_multiple_awards, class: "crayons-field__label" do %>
Allow multiple awards
Allows this badge to be awarded multiple times to the same user
<% end %>
<%= submit_tag "Create Badge", class: "c-btn c-btn--primary" %>
<% end %>