When activating the roles and permissions, no user can change their password, including the administrator user
I am using:
- radsystem 8.1.8
- Php Laravel
- Bootstrap JQuery
- Php 7.4.33
When activating the roles and permissions, no user can change their password, including the administrator user
I am using:
Make sure you have given that user permission to edit his or her account.
it has all permission @willvin
inside the web.php, bellow this line
Route::middleware([âauthâ, ârbacâ])->group(function () {
remove
" Route::post(âaccount/changepasswordâ, âAccountController@changepasswordâ)->name(âaccount.changepasswordâ);"
and paste it at the topâŚ
I already have the work around this issue since this is a compilation bug
Work Around Solution:
1.After activating the roles and permissions
2.Go to your database and find the table name âPermissionsâ
3. Add/Insert another records on the table and input the following values:
â for âpermissionâ column name the value is âaccount/changepasswordâ
â for ârole_idâ column name the value is base on the value of role id of the user
It will look like this in my case
When activating the roles and permissions, users cannot change their password, including the administrator user
I am using:
radsystem 8.7.0
Php Laravel
Bootstrap JQuery
Php 8.1.25