Hi, I am using koolreprt dashboard and resource to manage our admin controls on db tables, And we have added koolreport in laravel, In case of users resource I am not able to send encrypted password before saving to db. Is there any way I cam encrypt manually? This is how I am now using password field
Text::create("password")
->validators([
RequiredFieldValidator::create()
->errorMessage("Please enter a valid password"),
])
->showOnIndex(0)
->sortable(true),