{!! $stock['id'] !!}
{!! $stock['store_id'] !!}
{!! $stock['product_id'] !!}
{!! $stock['stock_in'] !!}
{!! $stock['stock_out'] !!}
{!! $stock['price'] !!}
{!! $stock['date'] !!}
{!! $stock['created_at'] !!}
{!! $stock['updated_at'] !!}
{!! $stock['deleted_at'] !!}
{!! Form::select('store_id')
-> options(trans('store::stock.options.store_id'))
-> label(trans('store::stock.label.store_id'))
-> placeholder(trans('store::stock.placeholder.store_id'))!!}
{!! Form::select('product_id')
-> options(trans('store::stock.options.product_id'))
-> label(trans('store::stock.label.product_id'))
-> placeholder(trans('store::stock.placeholder.product_id'))!!}
{!! Form::text('stock_in')
-> label(trans('store::stock.label.stock_in'))
-> placeholder(trans('store::stock.placeholder.stock_in'))!!}
{!! Form::text('stock_out')
-> label(trans('store::stock.label.stock_out'))
-> placeholder(trans('store::stock.placeholder.stock_out'))!!}
{!! Form::decimal('price')
-> label(trans('store::stock.label.price'))
-> placeholder(trans('store::stock.placeholder.price'))!!}