I followed this http://laravel.com/docs/4.2/security#authenticating-users
And done with my tabels,
While i try to authenticate, It fails all the time,
I use the default User Model and the auth.php's users table with suggested things in documentation. Should i have to do anything beyond it.
$email = Input::get('email');
$password = Input::get('password');
if (Auth::attempt(array('email' => $email, 'password' => $password)))
{
return Redirect::intended('dashboard');
}