You can create method that returns dummy Parent object for routing purpouse
class Person < ActiveRecord::Base
def routing_object
Person.new(id: id)
end
end
and then simply call form_for @employee.routing_object
which without type will return Person class object