PHP code example of ahmetbarut / laravel-jq-validation

1. Go to this page and download the library: Download ahmetbarut/laravel-jq-validation library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ahmetbarut / laravel-jq-validation example snippets


    [
        0 => [
            'rule' => 'rule_adi',
            'message' => 'Hata mesajı!'
        ]    
    ]

Form::setRules([
            'username' => '|max:35'
        ])->setMessages([
            'username.        $request
        );
html 
    <form name="testform">
        ...
        
        <button onclick="validateForm('form[name=testform]', '{{ route("login") }}', 'POST',['danger'])">
    </form>