Change password 403 forbidden

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


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…

1 Like