예제 #1
0
 /**
  * Attempts to login with the given credentials.
  *
  * @param  array $input
  *
  * @return boolean
  */
 public function login($input)
 {
     if (!isset($input['password'])) {
         $input['password'] = null;
     }
     return Confide::logAttempt($input, Config::get('confide::signup_confirm'));
 }