Hi, I have a problem in existing laravel 5 validation.
In my controller and request.
class PostEmailRequest extends Request{ public function rules() { return [ 'email' => 'required|max:255', ]; }}
As an example, it will return an email confirmation. What I want to do with my angularjs is that I want to check the validation and get it in my interface form. It will not reload the page. Do you have any idea about this?
The form from my application will send data via angularjs. $ http post url "app / postPage", and if it has an error above my code, then $ validation-> messages () will send my angularjs.
source share