Change name of User table in Laravel 5.2

1) Edit User.php and add the following:

protected $table = 'admin_users';

2) In AuthController.php update the email key

'email' => 'required|email|max:255|unique:admin_users