<%= form_for([:admin, @program]) do |f| %>
<% if @program.errors.any? %>
<%= pluralize(@program.errors.count, "error") %> prohibited this program from being saved:
<% @program.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %>
<% end %>
- <%= f.label :name %>
<%= f.text_field :name %>
-
<%= f.label :description %>
<%= f.text_area :description %>
- <%= f.label :start_date %><%= f.date_select :start_date %> <%= f.check_box :recurring %> No start date
-
<%= f.label 'Total Days' %>
<%= f.text_field :total_days %>
<%= f.submit %>
<% end %>