I would like to modify the existing Authorization module provided by Laravel 5, instead of asking for the email it will ask for the username field
email
username
you can just override auth username function from LoginController.php in laravel 5.3
public function username(){ return 'username'; }