I have following forms
{{ Form::text("theme[header_color]", '', []) }}
{{ Form::text("theme[bg_color]", '', []) }}
{{ Form::text("theme[text_color]", '', []) }}
I added following rules in request method.
theme[text_color]="required",
theme[bg_color]="required",
theme[text_color]="required"
I enter value in all field but still getting required validation error.
Please help have a look and help us.
THanks
theme.text_colouretc instead in the validation. Check laravel.com/docs/5.2/requests#retrieving-input (3rd example)