Boolean Checkbox for Blade with Bootstrap
Checkboxes are often tricky, because "unchecked" they wont be included inside the request.
Luckily this is easy circumvented with a hidden input with the same name and a (default) negative value.
Consider the following blade snippet:
<div class="f...
aaf.hashnode.dev