butonun kodu.
yukardaki inputa checked yazdırmak istiyorum sadece
$('.checkbox-toggle').click(function() {
if ($(this).is(':checked')) {
$('.form-check-input').attr('checked', true);
} else {
$('.form-check-input').attr('checked', false);
}
});