I have a table "users" in database with the following columns:
id, email, password, remember token, created_at, updated_at.
If i change email directly in a database, then i cannot log in using the new email. How can i apply a new email for success authentication in Laravel4?
via Alexander Kim