Add Instruction Time

<%= form_for [:admin, @instruction_time] do |f| %> <%= f.error_messages %>

<%= f.label :name %>
<%= f.text_field :name %>

<%= f.label :position %>
<%= f.select :position, options_for_select(1..50) %>

<%= f.submit %>

<% end %>