laravel validation alphanumeric with spaces

Solutions on MaxInterview for laravel validation alphanumeric with spaces by the best coders in the world

showing results for - "laravel validation alphanumeric with spaces"
Emil
17 Jun 2016
1[
2    'field' => 'regex:/[a-zA-Z0-9\s]+/',
3]
4
Edwin
16 Jan 2017
1[
2    'field' => 'regex:/^[a-zA-Z0-9\s]+$/',
3]
4
Sara
18 May 2020
1[
2    'field' => 'regex:[a-zA-Z0-9\s]+',
3]
4