Did you mean this as your custom validation?
'end_month' => 'required|validate_end_date:'.Input::get('start_month'),
You still use the same way of checking if there was an error for this field.
$errors->has('end_month')
And get and display the first error message by
$errors->first('end_month')
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community