%= simple_form_for(@user) do |f| %>
<% if @user.errors.any? %>
<%= pluralize(@user.errors.count, "error") %> prohibited this user from being saved:
<% @user.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %>
<% end %>
<%= f.label 'fuck you capy' %>
<%= f.text_field :name %>
<%= f.label :email %>
<%= f.text_field :email %>
<%= f.input :number, collection: 18..60 %>
<%= f.input :stuffed %>
<%= f.input :food, collection: ['toast', 'bacon', 'cucumber'], as: :radio_buttons %>
<%= f.simple_fields_for :info do |p| %>
<%= p.input :wage %>
<% end %>
<%= f.submit %>
<% end %>