What should I do to keep the label of a checkbox on the same line with the checkbox in a rails view containing a form?
Currently the label goes on the next line:
On Rails 5.2, ruby 2.4 and bootstrap 4.1.1:
<%= form.check_box :terms_of_service, label: "your custom label...."%>
worked for me without having to indicate inline checkbox.