{{ trans('Allegro::admin/sales/drafts.create.modal.header') }}

{!! Form::open() !!}
{!! Form::label('draft_title', 'Tytuł oferty', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('draft_title', mb_substr($product->getCurrentNameForProduct(\App\Models\Multistore::getActiveMultistore()), 0, 50), ['class' => 'form-control', 'disabled' => 'disabled', 'maxlength' => '50', 'id' => 'draft_title']) !!}
{!! Form::label('draft_product_description', 'Opis oferty', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('draft_product_description', $allegroTemplates->pluck('name', 'id'), null, ['class' => 'form-control', 'id' => 'draft_product_description']) !!}
{!! Form::label('draft_allegro_accounts', 'Konto Allegro', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('draft_allegro_accounts', $allegroAccounts->pluck('seller_id', 'id'), '0', ['class' => 'form-control', 'id' => 'draft_allegro_accounts_select']) !!}
{!! Form::checkbox('draft_additional_price_checkbox', null, false, ['id' => 'draft_additional_price_checkbox']) !!} {!! Form::label('draft_additional_price_checkbox', 'Ustaw dedykowaną cenę') !!}
{!! Form::label('draft_additional_price', 'Dedykowna cena', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::number('draft_additional_price', null, ['class' => 'form-control', 'id' => 'draft_additional_price', 'step' => '0.01', 'min' => '0.01']) !!}
{!! Form::close() !!}