{!! Form::label('product_note','Product Note:') !!}
{!! Form::textarea('product_note' , isset($product) ? productMetaFind($product->id, 'product_note', '') : '' , ['class' => 'form-control','placeholder' => 'Product Note','required'=>'true','rows' => 3]) !!}
{!! Form::label('inventory','Inventory:') !!}
{!! Form::text('inventory' , isset($product) ? productMetaFind($product->id, 'inventory', '') : '' , ['class' => 'form-control','placeholder' => 'Inventory','required'=>'true']) !!}
{!! Form::label('status','Status:') !!}
{!! Form::select('status' , ['in_stock' => 'In Stock' ,
'out_of_stock' => 'Out Of Stock',
'in_store' => 'In Store',
'special_order' => 'Special Order'],isset($product) ? productMetaFind($product->id, 'status', '') : '' ,
['class' => 'form-control']) !!}
{!! Form::label('video_embed','Video Embed:') !!}
{!! Form::text('video_embed' , isset($product) ? productMetaFind($product->id, 'video_embed', '') : '' , ['class' => 'form-control','placeholder' => 'Video Embed','required'=>'true']) !!}
{{ Form::checkbox('display_inventory',null,isset($product) ? productMetaFind($product->id, 'display_inventory', 0) : 0) }}
{!! Form::label('display_inventory','Display Inventory? ') !!}