<%= form_for(@token) do |f| %> <% if @token.errors.any? %>

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

<% end %>
<%= f.label :imageable_id %>
<%= f.number_field :imageable_id %>
<%= f.label :imageable_type %>
<%= f.text_field :imageable_type %>
<%= f.label :auth_token %>
<%= f.text_field :auth_token %>
<%= f.label :first_ip_address %>
<%= f.text_field :first_ip_address %>
<%= f.label :current_ip_address %>
<%= f.text_field :current_ip_address %>
<%= f.label :times_used %>
<%= f.number_field :times_used %>
<%= f.label :expiration_minutes %>
<%= f.number_field :expiration_minutes %>
<%= f.submit %>
<% end %>