{!! Form::label('draft_title', 'Tytuł oferty', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('draft_title', mb_substr($product->getCurrentNameForProduct(\App\Models\Multistore::getActiveMultistore()), 0, 50), ['class' => 'form-control', 'maxlength' => '50', 'id' => 'draft_title']) !!}
{!! Form::label('draft_offer_id', 'Numer aukcji', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('draft_offer_id', $offer->allegro_offer_id, ['class' => 'form-control', 'id' => 'draft_offer_id', 'disabled']) !!}
{!! Form::label('draft_product_description', 'Opis oferty', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('draft_product_description', $allegroTemplates->pluck('name', 'id'), $offer->template_id, ['class' => 'form-control', 'id' => 'draft_product_description']) !!}
{!! Form::label('draft_allegro_accounts', 'Konto Allegro', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('draft_allegro_accounts', $allegroAccounts->pluck('seller_id', 'id'), $offer->account_id, ['class' => 'form-control', 'id' => 'draft_allegro_accounts_select']) !!}
{!! Form::label('draft_product_delivery_price', 'Cennik dostawy', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('draft_product_delivery_price', $allegroDeliveriesPriceList->pluck('allegro_price_list_name', 'id'), $offer->delivery_price_id, ['class' => 'form-control', 'id' => 'draft_product_delivery_price']) !!}
{!! Form::label('draft_product_warranties', 'Informacja o gwarancji', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('draft_product_warranties', $allegroWarranties->pluck('name', 'id'), $offer->warranty_id, ['class' => 'form-control', 'id' => 'draft_product_warranties']) !!}
{!! Form::label('draft_product_return_policies', 'Polityka zwrotów', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('draft_product_return_policies', $allegroReturnPolicies->pluck('name', 'id'), $offer->return_policy_id, ['class' => 'form-control', 'id' => 'draft_product_return_policies']) !!}
{!! Form::label('draft_product_implied_warranties', 'Warunki reklamacji', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('draft_product_implied_warranties', $allegroImpliedWarranties->pluck('name', 'id'), $offer->implied_warranty_id, ['class' => 'form-control', 'id' => 'draft_product_implied_warranties']) !!}
@if(isset($additionalPrice))
{!! Form::label('draft_additional_price', 'Dedykowna cena', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::number('draft_product_additional_price', null, ['class' => 'form-control', 'id' => 'draft_additional_price', 'step' => '0.01' , 'min' => '0.01']) !!}
@endif