{{ Form::customText('name', $product->name) }} {{ Form::customText('unitPrice', $product->unit_price) }} {{ Form::customSelect('currency', $currencies->pluck('name', 'id'), $product->unit_price_currency_id) }} {{ Form::customSelect('group', $groups->pluck('name', 'id'), $product->group_id) }} {{ Form::customSelect('repeaterDiscount', ['true' => 'true', 'false' => 'false'], $product->is_discountable ? 'true' : 'false') }} {{ Form::customSelect('printKitchenCopy', ['true' => 'true', 'false' => 'false'], $product->should_print_kitchen_copy ? 'true' : 'false') }}
{{ Form::customText('barcodeId', $product->barcode_id) }}