I am a beginner in Laravel 5.
How can I remove whitespaces in validator?? i have read the documentation but there is no validator for trim(remove whitespaces).
In Laravel 5.2 or 5.3 you can use trim for spaces remove like this
$input = array_map('trim', $request->all());
so this will remove all space form inputs that posted and validation will work fine