{!! Form::label('image_fit', 'Image Fit' ,['class' => 'col-3 control-label text-right']) !!}
{!! Form::select('image_fit', [
'cover' => 'cover',
'fill' => 'fill',
'contain' => 'contain',
'fit_height' => 'fit height',
'fit_width' => 'fit width',
'none' => 'none',
'scale_down' => 'scale down',
], null, ['class' => 'select2-imagefit', 'data-empty'=>'empty', 'required' => true,]) !!}
Insert Image Fit