I just added active admin to my rails app and I\'m unable to create a new user. I am using the user model that active admin creates with a few added columns like first and
ActiveAdmin.register User do
permit_params [:email, :password, :password_confirmation]
form do |f|
f.inputs "User" do
f.input :email
f.input :password
f.input :password_confirmation
end
f.actions
end
end