/
home
/
sjslayjy
/
public_html
/
olddevlok
/
storage
/
framework
/
views
/
Upload File
HOME
<form action="<?php echo e(URL('/user/edit-account')); ?>" role="form" id="editAccountForm"> <div class="row"> <input type="hidden" value="<?php echo e($account->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($account->name); ?>" name="name" id="name" placeholder="Name"> <span class="label label-danger" id="edit_name_error" style="display: none;"></span> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="email">Email</label> <input type="text" class="form-control" value="<?php echo e($account->email); ?>" name="email" id="email" placeholder="Email"> <span class="label label-danger" id="edit_email_error" style="display: none;"></span> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="phone">Phone</label> <input type="text" class="form-control" value="<?php echo e($account->phone); ?>" name="phone" id="phone" placeholder="Phone"> <span class="label label-danger" id="edit_phone_error" style="display: none;"></span> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="address">Address</label> <input type="text" class="form-control" name="address" id="address" value="<?php echo e($account->address); ?>" placeholder="Address"> <span class="label label-danger" id="add_address_error" style="display: none;"></span> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="gst_no">GST Number</label> <input type="text" class="form-control" name="gst_no" id="gst_no" value="<?php echo e($account->gst_no); ?>" placeholder="GST Number"> <span class="label label-danger" id="add_gst_no_error" style="display: none;"></span> </div> </div> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> <button type="button" id="editAccountBtn" class="btn btn-primary" onclick="updateAccount()">Submit</button> </div> </form> <?php /**PATH /home/pmmsanvp/public_html/srt/resources/views/dashboard/master/edit-account.blade.php ENDPATH**/ ?>