{!! Form::open(['id' => 'price-multiplier','novalidate' => 'novalidate', 'files' => true]) !!}
Price Multiplier

You can add a price to all the products on your Website by uploading a spreadsheet. This is most useful if a manufacturer can provide an inventory list with model numbers and wholesale prices.

Download this sample spreadsheet and fill in the SKU and prices you want to import in the same format we have provided here.
{!! Form::label('price','Price') !!} {!! Form::text('price', 1 , ['class' => 'form-control','placeholder' => 'Price','id' => 'price']) !!}
{!! Form::label('sale_price','Sale Price') !!} {!! Form::text('sale_price', 1 , ['class' => 'form-control','placeholder' => 'Sale Price','id' => 'sale_price']) !!}
{!! Form::label('msrp','MSRP') !!} {!! Form::text('msrp', 1 , ['class' => 'form-control','placeholder' => 'MSRP','id' => 'msrp']) !!}
{!! Form::label('ending_price','Price Ending') !!} {!! Form::text('ending_price', 0 , ['class' => 'form-control','placeholder' => 'Price Ending','id' => 'ending_price']) !!}
{!! Form::close() !!}