Laravel utilisant le nom d'utilisateur au lieu de l'e-mail

All we need is add a method in app/Http/Controllers/Auth/LoginController.php:

/**
 * Get the login username to be used by the controller.
 *
 * @return string
 */
public function username()
{
    return 'username';
}
m-naderian