{!! Form::open(['url' => action([\App\Http\Controllers\BarcodeController::class, 'update'], [$barcode->id]), 'method' => 'PUT',
'id' => 'add_barcode_settings_form' ]) !!}
{!! Form::label('name', __('db.Sticker Sheet setting Name') . ':*') !!}
{!! Form::text('name', $barcode->name, ['class' => 'form-control', 'required',
'placeholder' => __('db.Sticker Sheet setting Name')]); !!}
{!! Form::label('description', __('db.Sticker Sheet setting Description') ) !!}
{!! Form::textarea('description', $barcode->description, ['class' => 'form-control',
'placeholder' => __('db.Sticker Sheet setting Description'), 'rows' => 3]); !!}
{!! Form::close() !!}