/
home
/
sjslayjy
/
public_html
/
tabson_test
/
storage
/
framework
/
views
/
Upload File
HOME
<form action="<?php echo e(URL('/user/edit-customer')); ?>" role="form" id="editCustomerForm"> <div class="row"> <input type="hidden" value="<?php echo e($customer->id); ?>" name="id"> <div class="col-md-12"> <div class="form-group"> <label for="name">Name</label> <input type="text" class="form-control" value="<?php echo e($customer->name); ?>" name="name" id="name" placeholder="Name"> <span class="label label-danger" id="edit_name_error" style="display: none;"></span> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="location">Location</label> <input type="text" class="form-control" value="<?php echo e($customer->location); ?>" name="location" id="location" placeholder="Name"> <span class="label label-danger" id="edit_location_error" style="display: none;"></span> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="gst_number">Gst Number</label> <input type="text" class="form-control" value="<?php echo e($customer->gst_number); ?>" name="gst_number" id="gst_number" placeholder="Name"> <span class="label label-danger" id="edit_gst_number_error" style="display: none;"></span> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="status">Status</label> <select class="form-control" name="is_active" id="is_active"> <option value="">ChangeStatus</option> <option value="1" <?php echo e($customer->is_active=='1'?'selected':''); ?>>Active</option> <option value="0" <?php echo e($customer->is_active=='0'?'selected':''); ?>>InActive</option> </select> <span class="label label-danger" id="add_status_error" style="display: none;"></span> </div> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> <button type="button" id="editCustomertBtn" class="btn btn-primary" onclick="updateCustomer()">Submit</button> </div> </form> <?php /**PATH /var/www/scm/resources/views/dashboard/master/edit-customer.blade.php ENDPATH**/ ?>