Is it possible to make the Checkbox element have its label before the input?
When creating a Checkbox element, it comes with the input before the label, I wanted to create it with the input after the label, I didn't see anyting on the documentation, is it possible?
Solution:Jump to solution
That worked:
```
Checkbox::make('check')
->extraFieldWrapperAttributes(['class' => 'reverse-checkbox']),...
2 Replies