I have a User
model with the following attributes:
name
age
ìmage
email
password
I want the user to edit/update the first three attributes in one view and the other two in another.
Do I break the RESTful pattern if I duplicate the edit/update actions and routes?
What could be a better solution?