{!! Form::open(['route' => 'admin.promotion.dealOfTheDay.update', 'method' => 'PUT', 'id' => 'form', 'data-toggle' => 'validator']) !!}
{{ trans('app.form.deal_of_the_day') }}
{!! Form::label('item_id', trans('app.form.deal_of_the_day')) !!} {!! Form::select('item_id', isset($item) ? [$item->id => $item->title . ' | ' . $item->sku . ' | ' . get_formated_currency($item->current_sale_price(), 2, config('system_settings.currency.id'))] : [], isset($item) ? $item->id : null, ['class' => 'form-control searchInventoryForSelect', 'style' => 'width: 100%']) !!}
{!! trans('help.deal_of_the_day') !!}
{!! Form::submit(trans('app.update'), ['class' => 'btn btn-flat btn-new']) !!}
{!! Form::close() !!}