<div class="col-sm-9">
                            <?php 
echo Form::number('order_number', $value = $edit_product_data->Order_No, $attributes = array('class' => 'form-control', 'placeholder' => 'Order Number'));
?>
                            <span class="text-red"><?php 
echo $errors->first('order_number');
?>
</span>
                        </div>
                    </div>
                    
                    <div class="form-group">
                        <label id="inputSuccess" class="col-sm-3 control-label">Supplier<b class="mandetory_star">*</b> </label>
                        <div class="col-sm-9">
                              <?php 
$select_supplier_blank = array($edit_product_data->Supplier_ID => ItemConfiguration::getSupplierById($edit_product_data->Supplier_ID)->Supplier_Name);
$select_supplier = array();
foreach ($all_supplier as $single_supplier) {
    // Make associative array from all category to create select option
    $select_supplier[$single_supplier->Supplier_ID] = $single_supplier->Supplier_Name;
}
$final_supplier_select = $select_supplier_blank + $select_supplier;
echo Form::select('supplier_id', $final_supplier_select, '', $attributes = array('class' => 'form-control'));
?>
 
                           <span class="text-red"><?php 
echo $errors->first('supplier_id');
?>
</span>
                        </div>
                    </div>
 public function editSupplier($id)
 {
     $supplierData = ItemConfiguration::getSupplierById($id);
     return View::make('admin.pages.ItemConfiguration.update_supplier_form')->with(array('title' => 'Supplier', 'supplier' => $supplierData));
 }
    ?>
 </td>
                                    <td> <?php 
    echo ItemConfiguration::getProductById($single_product->Product_ID)->Product_Name;
    ?>
 </td>
                                    <td> <?php 
    echo $single_product->Product_Count;
    ?>
 </td>
                                    <td> <?php 
    echo $single_product->Order_No;
    ?>
 </td>
                                    <td> <?php 
    echo ItemConfiguration::getSupplierById($single_product->Supplier_ID)->Supplier_Name;
    ?>
 </td>
                                    <td> <?php 
    echo $single_product->Order_date;
    ?>
 </td>
                                    <td>
                                        <div class="btn-group">
                                            <button type="button" class="btn btn-primary ">Action</button>
                                            <button type="button" class="btn btn-primary  dropdown-toggle" data-toggle="dropdown">
                                                <span class="caret"></span>
                                                <span class="sr-only">Toggle Dropdown</span>
                                            </button>
                                            <ul class="dropdown-menu" role="menu">
                                                <li><a href="<?php