[Vuejs]-Laravel – Change Password issue

3👍

You are assigning the password statically.

$data['password'] = bcrypt('password');

You need to change it to this.

$data['password'] = bcrypt($request->password);

Leave a comment