WordPress

Coming Soon

revealability

File "e663ed60e751253231b19189f22c2bd5eb430a61.php"

Full Path: /home/karnava/public_html/center.karnavati.in/storage/framework/views/e663ed60e751253231b19189f22c2bd5eb430a61.php
File size: 3.2 KB
MIME-type: text/html
Charset: utf-8

 	
<?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/iimtstudiesco/public_html/center/resources/views/User/update_address.blade.php ENDPATH**/ ?>