My new.html.erb:
New konkurrancer <%= simple_form_for [:admin, @konkurrancer] do |f| % <%= f.input :name %>
You're using a namespaced model - you must reference the namespace in your form path.
Try this:
<%= simple_form_for [:admin, @konkurrancer] do |f| %>
try
<%= simple_form_for ['admin', @konkurrancer] do |f| %>
It looks like you're in a name spaced model?