WordPress

Coming Soon

revealability
<?php $__env->startSection('title','Edit Establishment'); ?> <?php $__env->startSection('main_container'); ?> <!--== BODY INNER CONTAINER ==--> <div class="sb2-2"> <!--== breadcrumbs ==--> <div class="sb2-2-2"> <ul> <li><a href="index-2"><i class="fa fa-home" aria-hidden="true"></i> Home</a> </li> <li class="active-bre"><a href="#"> Update Document</a> </li> </ul> </div> <!--== User Details ==--> <div class="sb2-2-3"> <div class="row"> <div class="col-md-12"> <div class="box-inn-sp admin-form"> <div class="sb2-2-add-blog sb2-2-1"> <h2>Update Your Establishment Information</h2> <p><?php if(session()->has('success')): ?> <i class="alert alert-success"><?php echo e(session('success')); ?></i> <?php endif; ?></p> <ul class="nav nav-tabs tab-list"> <li class="active"><a data-toggle="tab" href="#menu1" aria-expanded="false"><i class="fa fa-info" aria-hidden="true"></i> <span>Establishment</span></a> </li> </ul> <div class="tab-content"> <div id="menu1" class="tab-pane fade active in"> <div class="inn-title"> <h4>Establishment Information</h4> </div> <div class="bor ad-cou-deta-h4"> <form action="<?php echo e(url('/edit_establishment/'.$fetch->id)); ?>" method="post" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div class="row"> <div class="input-field col s12"> <p>Head Office / Admin. address <span style="color:red">*</span></p> <textarea class="materialize-textarea" name="office_address"><?php echo $fetch->office_address ?></textarea> <?php if($errors->has('office_address')): ?> <span class="text-danger"><?php echo e($errors->first('office_address')); ?></span> <?php endif; ?> </div> </div> <div class="row"> <div class="input-field col s12"> <p>Details of other branch locations <span style="color:red">*</span></p> <textarea class="materialize-textarea" name="other_branch_location"><?php echo $fetch->other_branch_location ?></textarea> <?php if($errors->has('other_branch_location')): ?> <span class="text-danger"><?php echo e($errors->first('other_branch_location')); ?></span> <?php endif; ?> </div> </div> <div class="row"> <div class="input-field col s3"> <p>Type of Service Provided <span style="color:red">*</span></p> <input type="text" class="validate" name="types_of_service" value="<?php echo $fetch->types_of_service_1 ?>"> <?php if($errors->has('types_of_service')): ?> <span class="text-danger"><?php echo e($errors->first('types_of_service')); ?></span> <?php endif; ?> </div> <div class="input-field col s3"> <p>Service Details <span style="color:red">*</span></p> <input type="text" class="validate" name="service_details" value="<?php echo $fetch->service_details_1 ?>"> <?php if($errors->has('service_details')): ?> <span class="text-danger"><?php echo e($errors->first('service_details')); ?></span> <?php endif; ?> </div> <div class="input-field col s3"> <p>Product Details <span style="color:red">*</span></p> <input type="text" class="validate" name="product_details" value="<?php echo $fetch->product_details_1 ?>"> <?php if($errors->has('product_details')): ?> <span class="text-danger"><?php echo e($errors->first('product_details')); ?></span> <?php endif; ?> </div> <div class="input-field col s3"> <p>Client Data <span style="color:red">*</span></p> <input type="text" class="validate" name="client_data" value="<?php echo $fetch->client_data_1 ?>"> <?php if($errors->has('client_data')): ?> <span class="text-danger"><?php echo e($errors->first('client_data')); ?></span> <?php endif; ?> </div> <div class="input-field col s3"> <input type="text" class="validate" name="types_of_service_2" value="<?php echo $fetch->types_of_service_2 ?>"> </div> <div class="input-field col s3"> <input type="text" class="validate" name="service_details_2" value="<?php echo $fetch->service_details_2 ?>"> </div> <div class="input-field col s3"> <input type="text" class="validate" name="product_details_2" value="<?php echo $fetch->product_details_2 ?>"> </div> <div class="input-field col s3"> <input type="text" class="validate" name="client_data_2" value="<?php echo $fetch->client_data_2 ?>"> </div> <div class="input-field col s3"> <input type="text" class="validate" name="types_of_service_3" value="<?php echo $fetch->types_of_service_3 ?>"> </div> <div class="input-field col s3"> <input type="text" class="validate" name="service_details_3" value="<?php echo $fetch->service_details_3 ?>"> </div> <div class="input-field col s3"> <input type="text" class="validate" name="product_details_3" value="<?php echo $fetch->product_details_3 ?>"> </div> <div class="input-field col s3"> <input type="text" class="validate" name="client_data_3" value="<?php echo $fetch->client_data_3 ?>"> </div> </div> <div class="row"> <div class="input-field col s12"> <i class="waves-effect waves-light btn-large waves-input-wrapper" style=""><input type="submit" class="waves-button-input" value="Submit"></i> </div> </div> </form> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('User.Layout.main_layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\xampp\htdocs\iimtlms\resources\views/User/edit_establishment.blade.php ENDPATH**/ ?>