WordPress

Coming Soon

revealability
<?php $__env->startSection('title','Update Address'); ?> <?php $__env->startSection('main_container'); ?> <!-- partial --> <div class="main-panel"> <div class="content-wrapper"> <div class="page-header"> <h3 class="page-title"> Update Address </h3> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Update Address</li> </ol> </nav> </div> <div class="row"> <div class="col-md-8 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h4 class="card-title"> </h4> <form class="forms-sample" action="<?php echo e(url('/update_address/'.$fetch->customer_id)); ?>" method="post" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div class="form-group"> <label for="exampleInputUsername1">Director Of Center<span style="color:red">*</span></label> <select name="Director" id="center_id" value="<?php echo e(old('Director')); ?>" class="form-control"> <option value="">Select </option> <?php foreach($organization_id_arr as $data) { ?> <option style="margin-right:200px;" value="<?php echo $data->form_id;?>"> <?php echo $data->name_director ?></option> <?php } ?> </select> <?php if($errors->has('Director')): ?> <span class="text-danger" ><?php echo e(($errors->first('Director'))); ?></span> <?php endif; ?> </div> <div class="form-group"> <label for="exampleInputUsername1">New Address <span style="color:red">*</span></label> <input type="text" class="form-control" id="exampleInputUsername1" name="office_address" value="<?php echo e(old('office_address')); ?>"> <?php if($errors->has('office_address')): ?> <span class="text-danger" ><?php echo e(($errors->first('office_address'))); ?></span> <?php endif; ?> </div> <button type="submit" class="btn btn-primary mr-2" name="submit" value="Send">Submit</button> </form> </div> </div> </div> </div> </div> <!-- content-wrapper ends --> <?php $__env->stopSection(); ?> <?php echo $__env->make('User.Layout.main_layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/opaldemo/public_html/center.iimtstudies.co.uk/resources/views/User/update_address.blade.php ENDPATH**/ ?>