when we adding in Crud file for fields
'wrapper' => [
'class' => 'my-2 col-md-4'
],
required fields should be marked with "red star" after label
it disappears.
When I run php artisan backpack:version the output is:
4.1.6
Hello @siberfx can you show me your field definition ?
We use wrapper in an required field in demo and it still have the red asterisk there.



here you go.
I am sorry, but I am still unable to reproduce this.
[ // select_from_array
'name' => 'select_from_array',
'label' => 'Select_from_array (no relationship, 1-1 or 1-n)',
'type' => 'select_from_array',
'options' => ['one' => 'One', 'two' => 'Two', 'three' => 'Three'],
'allows_null' => false,
'tab' => 'Selects',
//'allows_multiple' => false, // OPTIONAL; needs you to cast this to array in your model;
'wrapper' => ['class' => 'form-group col-md-6'],
],
public function rules()
{
return [
'select_from_array' => 'required'
];
}

you can close this issue, I will investigate it myself and I can create another report with the exact reason that causing this issue. thank you for your time.
Thank you for being so understanding @siberfx !