How does your model look like ? Maybe you don't have password in your $fillable
property on model, that's like 99% it. You can either add it to $fillable
on your model or manually assign password with $model->password = Hash::make($password)
. There is a chance it is something else, but seeing your model would definitely help.
Problem solved. I updated the controller to pass in the User object and then updated the UserRepository method like so
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community