| Question | Answer
| ----------------------- | -----------------------
| Issue or Enhancement | Enhancement
| Laravel Version | 8.0
| Project Version | 3.4
I have the auth from this package. But Form validation on the signup does not seems to be responsive to text. Example: I have a failed validation for "required" First Name. When I enter any value to it, the form still shows the validation error.
If the validation criteria is met and form is not submitted, the error message should not be displayed. As reference from AdminLTE version 3 Validation. Here is the link to reference - https://adminlte.io/themes/v3/pages/forms/validation.html
BINGO: You will see the error messaging still displayed.
Calling Adminlte AJAX for form validation.

The Form Validation is correct that's simply the expected behavior, it only checks the fields on submit there are no AJAX functions included.
As reference from AdminLTE version 3 Validation.
Thats not a reference its only a way to do it, also the demo is intended to test without any backend framework like Laravel or other that's why there is a simple JS Validation script built in the demo.
Most helpful comment
The Form Validation is correct that's simply the expected behavior, it only checks the fields on submit there are no AJAX functions included.
Thats not a reference its only a way to do it, also the demo is intended to test without any backend framework like Laravel or other that's why there is a simple JS Validation script built in the demo.