$validation = Validator::make($request->all(),[
'name' => ['Required','alpha']
]);
if($validation->passes()){
print_r($request->name);
}
else{
//this will return the errors & to check put "dd($errors);" in your blade(view)
return back()->withErrors($validation)->withInput();
}