I have to submit multiple forms, I followed the advice of this post: How to submit multiple, duplicate forms from same page in Rails - preferably with one button
Note I\
You are not checking if @registration.save actually saves the record. It can return true or false. I guess it just silently fails.
@registration.save
true
false
If you use @registration.save!, it wile raise an exception when anything goes wrong. I guess there is some kind of validation error there.
@registration.save!