In my form I have some checkboxes, but by default, I have :
Putting the form input inside the label tag would result in broken HTML.
What is your goal? If you are simply looking to make the label and input show on the same line in the browser, then you could use css:
input, label { display: inline; }