WordPress

Coming Soon

revealability
<?php $__env->startSection('title','Edit Other Resource'); ?> <?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 Other Resource 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="#menu4" aria-expanded="false"><i class="fa fa-info" aria-hidden="true"></i> <span>Other Resource</span></a> </li> </ul> <div class="tab-content"> <div id="menu4" class="tab-pane fade active in"> <div class="inn-title"> <h4>Other Resources</h4> </div> <div class="bor"> <form action="<?php echo e(url('/edit_resource/'.$fetch->id)); ?>" method="post" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div class="row"> <div class="input-field col s4" style="padding-top:57px;"> <input id="t5-n1" type="text" class="validate" value="Head Office – Corporate Office" readonly> </div> <div class="input-field col s2"> <p>Status (Leased/Owned) <span style="color:red">*</span></p> <input id="t5-n2" type="text" class="validate" name="head_status" value="<?php echo $fetch->head_status ?>"> <?php if($errors->has('head_status')): ?> <span class="text-danger"><?php echo e($errors->first('head_status')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <p>Carpet area of Office <span style="color:red">*</span></p> <input id="t5-n2" type="text" class="validate" name="head_area" value="<?php echo $fetch->head_area ?>"> <?php if($errors->has('head_area')): ?> <span class="text-danger"><?php echo e($errors->first('head_area')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <p>Infrastructure in office <span style="color:red">*</span></p> <input id="t5-n2" type="text" class="validate" name="head_infrastructure" value="<?php echo $fetch->head_infrastructure ?>"> <?php if($errors->has('head_infrastructure')): ?> <span class="text-danger"><?php echo e($errors->first('head_infrastructure')); ?></span> <?php endif; ?> </div> </div> <div class="row"> <div class="input-field col s4"> <input id="t5-n3" type="text" class="validate" value="Branch Offices" readonly> </div> <div class="input-field col s2"> <input id="t5-n4" type="text" class="validate" name="branch_status" value="<?php echo $fetch->branch_status ?>"> <?php if($errors->has('branch_status')): ?> <span class="text-danger"><?php echo e($errors->first('branch_status')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <input id="t5-n4" type="text" class="validate" name="branch_area" value="<?php echo $fetch->branch_area ?>"> <?php if($errors->has('branch_area')): ?> <span class="text-danger"><?php echo e($errors->first('branch_area')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <input id="t5-n4" type="text" class="validate" name="branch_infrastructure" value="<?php echo $fetch->branch_infrastructure ?>"> <?php if($errors->has('branch_infrastructure')): ?> <span class="text-danger"><?php echo e($errors->first('branch_infrastructure')); ?></span> <?php endif; ?> </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_resource.blade.php ENDPATH**/ ?>