Damir
Damir
Maybe I am missing something, but if I try to get all errors for all input, sometime field has not property `errors`. Before checking `field.errors.length` I add a check if...
I would like to use bootstrap 4 and bootstrap 5 default validation classes, but seem not possible. For display `.invalid-feedback` the input must have `.is-invalid` or `.valid-feedback` with `.is-valid`, example:...
When you have input that has not validation, for example an input checkbox "Remember me", right now it make it valid and hightlight in green when you do validation, example:...
Proposed solution for fix issue https://github.com/sha256/Pristine/issues/42 I am just adding the same class name success or error to input field, by keeping also on parent.
Hi, I notice that the filter `add_attributes_to_script()` doesn't work because script tag has not the type attribute anymore in Wordpress, or almost in mine Wordpress with default theme TwentyTwenty and...
I see there is already an issue about this here https://github.com/InfyOmLabs/generator-builder/issues/54 And seem already an old issue, see https://github.com/laravel/framework/issues/4721 When running artisan via console, STDIN is already defined, but not...
There is a reason why the txtDbValue is always hidden? This https://github.com/InfyOmLabs/generator-builder/blob/master/views/field-template.blade.php#L29 Should be appended to dbType like for htmlType and htmlValue I can make a PR to: 1) Make...
I follow installation guide, which is: 1) `laravel new themes` // installed laravel 2) `composer require caffeinated/themes` // installed package 3) `php artisan make:theme Bootstrap` // created theme Now works...
Suppose we have a variable for set body class. In case we don't pass any variable as body class I get `class="undefined"` How to check if variable is set? Like:...
In read me there is this example: ```html {{ item }} ``` But it seem not working.. Only when passing array via locals. Also adding below not working: ```html module.exports...