i wana to know how i can let each user can access his/her profile and update user name, email, password, ets.., and have another option to delete his/her account in Laravel 5.7, and thank you.
Here is the answer..you create a controller which serves the details of the user from users table as prerequisite for the blade of profile page, add a button to update, clicking which, the details will be send back to another method of the same controller which will use update()
method to update the details of the user in users table targetting the correct id and then add a delete button, clicking which, the action will be taken to another method of the same controller by passing the id of the user and use delete()
method to delete the user from the users table.
simple right?
i dont think you expect the whole code..do you?