%= render partial: 'shared/form_model_errors', locals: { obj: quiz} %>
<%= form_for quiz, url: action do |form| %>
<%= form.label :name, "Quiz Description" %>
<%= form.text_field :name %>
<%= form.label :dept, 'Department' %>
<%= form.text_field :dept %>
<%= form.label :unit, 'Unit' %>
<%= form.text_field :unit %>
<%= form.submit %>
<% end %>