Add a Supplement

<%= form_for([:admin, @supplement]) do |f| %> <% if @supplement.errors.any? %>

<%= pluralize(@supplement.errors.count, "error") %> prohibited this program from being saved:

<% end %>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.label :description %>
<%= f.text_area :description %>
<%= f.submit %>
<% end %>

<%= link_to "Back to List", admin_supplements_path %>