Başka yolu var mı bilmiyorum ama, rotayı iki Route::controllers yerine Route::controller diye tanımlarsan isim verebilirsin.
Örneğin;
Route::controller('/hesap','Auth\AuthController',array(
'getRegister' => 'hesap.register',
'postRegister' => 'hesap.register',
'getLogin' => 'hesap.login',
'postLogin' => 'hesap.login',
'getLogout' => 'hesap.logout',
));
Route::controller('/parola','Auth\PasswordController',array(
'getEmail' => 'parola.email',
'postEmail' => 'parola.email',
'getReset' => 'parola.reset',
));
gibi kullanılması gerekiyor.