Just check if the entry in the database exists directly using a query.
if (DB::table('people')->where('email', $request->email)->exists()){
return 'This e-mail is already registered';
}
https://laravel.com/docs/8.x/queries#determining-if-records-exist
CLICK HERE to find out more related problems solutions.