Introducing ReUI:Open-source UI components and apps built with React, Next.js and Tailwind CSS
Browse ReUI

Laravel and FormValidator


HI
I'm about to start a project with Metronic 8.2.3 and Laravel 10. As soon as it was installed I ran some tests on the validation of the Users form. In my case the validation is managed by Livewire. I would like it to be handled by the FormValidator library instead. Can you kindly give me a simple example? Thank you


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (6)


You can use FormValidator in Metronic 8.2.3 with Laravel 10 by integrating it with your user form.

Here's a simple example:
$('#userForm').validate({
rules: {
name: { required: true, minlength: 3 },
email: { required: true, email: true },
password: { required: true, minlength: 6 }
},
messages: {
name: "Please enter at least 3 characters",
email: "Enter a valid email address",
password: "Password must be at least 6 characters long"
}
});

This ensures client-side validation before submitting the form. For more updates, visit wormzoneapk.com.



Starting a project with Metronic 8.2.3 and Laravel 10 is as exciting as mastering CarX Street Drive! To switch user form validation from Livewire to FormValidator, streamline your process for precision. For example, integrate FormValidator in your controller and use it to validate inputs before processing, ensuring smooth functionality—like a perfect drift! Visit here https://carxstreetdrive.com/



Hi

To use FormValidation with Livewire during form submission, you can try these:

Ensure your Livewire component is set up to handle form submission. Use the wire:submit directive to point to the method that will process the form.

In your JavaScript file, initialize FormValidation on the form element. You’ll need to specify the form ID and the validation rules according to the FormValidation documentation.

To integrate FormValidation with Livewire, you can listen for the form’s submit event in JavaScript and manually trigger Livewire’s form submission only if the form passes validation. Here’s a sample JavaScript snippet:

document.addEventListener("livewire:load", function () {
const formValidation = FormValidation.formValidation(
document.getElementById("your-form-id"),
{
// Your validation rules
}
);

document.getElementById("your-form-id").addEventListener("submit", function (e) {
e.preventDefault();

formValidation.validate().then(function(status) {
if (status === "Valid") {
window.livewire.emit("submitForm");
}
});
});
});


In your Livewire component, create a method named submitForm (or whatever you named it in the JavaScript emit function) to handle the form submission after validation.

Optionally, you can also include server-side validation in your Livewire method to ensure data integrity, even if the client-side validation is bypassed.



Hi James Herris

Sorry for the delay in response. When you mention the FormValidator library, are you referring to a specific Laravel package for form validation or the FormValidation JavaScript library? Knowing which library you're referring to will help provide a more accurate example for your form validation setup.



Thanks for reply.
I apologize for the inaccuracy. I am referring to the FormValidation JavaScript library



@ragdoll hit Hi there! No problem at all, I appreciate your response. I was actually referring to the FormValidation JavaScript library. I’m looking to implement it in my project and could use some guidance on setting it up. If you could provide an example, that would be really helpful! Thanks!


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(
Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(