%= form_for(@rogue_planet) do |f| %>
<% if @rogue_planet.errors.any? %>
<%= pluralize(@rogue_planet.errors.count, "error") %> prohibited this rogue_planet from being saved:
<% @rogue_planet.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %>
<% end %>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.submit %>
<% end %>