Remove unusual grid from EditProfile form

Hi, I'm using a custom class and form to build a custom EditProfile page like this:
->profile(EditProfile::class, isSimple: false)
->profile(EditProfile::class, isSimple: false)
It seems like the view/layout that is used to generate this page is different from the "standard" form builder. All form fields are placed in a grid to make the label inline. I can't seem to find the source of this and would like to remove this styling to use the standard form builder layout.
Solution:
For some reason I had to add ->inlineLabel(false) to each section to get the "standard" layout. Not sure why, I'm pretty sure that I didn't have to do this before.
Jump to solution
1 Reply
Solution
czehnter
czehnter2w ago
For some reason I had to add ->inlineLabel(false) to each section to get the "standard" layout. Not sure why, I'm pretty sure that I didn't have to do this before.

Did you find this page helpful?