On my project, I did a custom helper like below:
Best practices for custom helpers on Laravel 5
After that, my validations has been disabled. The validations happens normally on server side, withErrors($validator) method, but in my view blade the variable $errors is always empty.
How can I enable the laravel's validation again?