{{ Form::label('barcode_type', __('Barcode Type'), ['class' => 'form-label text-dark']) }}
{{ Form::select('barcode_type', ['code128' => 'Code 128', 'code39' => 'Code 39', 'code93' => 'Code 93'], !empty($settings['barcode_type']) ? $settings['barcode_type'] : '', ['class' => 'form-control', 'data-toggle' => 'select', 'required'=>'required']) }}
{{ Form::label('barcode_format', __('Barcode Format'), ['class' => 'form-label text-dark']) }}
{{ Form::select('barcode_format', ['css' => 'CSS', 'bmp' => 'BMP'], !empty($settings['barcode_format']) ? $settings['barcode_format'] : '', ['class' => 'form-control', 'data-toggle' => 'select', 'required'=>'required']) }}