$user = User::where('email', '=', Input::get('email'))->first(); if ($user === null) {    // user doesn't exist }

Read more of this post