WordPress

Coming Soon

revealability
<?php $__env->startSection('title','Edit Financial'); ?> <?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 Financial 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="#menu2" aria-expanded="false"><i class="fa fa-info" aria-hidden="true"></i> <span>Financial</span></a> </li> </ul> <div class="tab-content"> <div id="menu2" class="tab-pane fade active in"> <div class="inn-title"> <h4>Financial Resource Data of last 3 years (in INR Lac)</h4> </div> <div class="bor"> <form action="<?php echo e(url('/edit_financial/'.$fetch->id)); ?>" method="post" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div class="row"> <div class="input-field col s4"> <p>Year <span style="color:red">*</span></p> <input type="text" class="validate" name="year_1" value="<?php echo $fetch->year_1 ?>"> <?php if($errors->has('year_1')): ?> <span class="text-danger"><?php echo e($errors->first('year_1')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <p>Revenue Earned <span style="color:red">*</span></p> <input type="text" class="validate" name="revenue_1" value="<?php echo $fetch->revenue_1 ?>"> <?php if($errors->has('revenue_1')): ?> <span class="text-danger"><?php echo e($errors->first('revenue_1')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <p>Gross Profit <span style="color:red">*</span></p> <input type="text" class="validate" name="gross_1" value="<?php echo $fetch->gross_1 ?>"> <?php if($errors->has('gross_1')): ?> <span class="text-danger"><?php echo e($errors->first('gross_1')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <p>Net Profit / Loss <span style="color:red">*</span></p> <input type="text" class="validate" name="net_profit_1" value="<?php echo $fetch->net_profit_1 ?>"> <?php if($errors->has('net_profit_1')): ?> <span class="text-danger"><?php echo e($errors->first('net_profit_1')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <p>Remarks if any </p> <input type="text" class="validate" name="remarks_1" value="<?php echo $fetch->remarks_1 ?>"> </div> <div class="input-field col s4"> <input type="text" class="validate" name="year_2" value="<?php echo $fetch->year_2 ?>"> <?php if($errors->has('year_2')): ?> <span class="text-danger"><?php echo e($errors->first('year_2')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <input type="text" class="validate" name="revenue_2" value="<?php echo $fetch->revenue_2 ?>"> <?php if($errors->has('revenue_2')): ?> <span class="text-danger"><?php echo e($errors->first('revenue_2')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <input type="text" class="validate" name="gross_2" value="<?php echo $fetch->gross_2 ?>"> <?php if($errors->has('gross_2')): ?> <span class="text-danger"><?php echo e($errors->first('gross_2')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <input type="text" class="validate" name="net_profit_2" value="<?php echo $fetch->net_profit_2 ?>"> <?php if($errors->has('net_profit_2')): ?> <span class="text-danger"><?php echo e($errors->first('net_profit_2')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <input type="text" class="validate" name="remarks_2" value="<?php echo $fetch->remarks_2 ?>"> </div> <div class="input-field col s4"> <input type="text" class="validate" name="year_3" value="<?php echo $fetch->year_3 ?>"> <?php if($errors->has('year_3')): ?> <span class="text-danger"><?php echo e($errors->first('year_3')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <input type="text" class="validate" name="revenue_3" value="<?php echo $fetch->revenue_3 ?>"> <?php if($errors->has('revenue_3')): ?> <span class="text-danger"><?php echo e($errors->first('revenue_3')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <input type="text" class="validate" name="gross_3" value="<?php echo $fetch->gross_3 ?>"> <?php if($errors->has('gross_3')): ?> <span class="text-danger"><?php echo e($errors->first('gross_3')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <input type="text" class="validate" name="net_profit_3" value="<?php echo $fetch->net_profit_3 ?>"> <?php if($errors->has('net_profit_3')): ?> <span class="text-danger"><?php echo e($errors->first('net_profit_3')); ?></span> <?php endif; ?> </div> <div class="input-field col s2"> <input type="text" class="validate" name="remarks_3" value="<?php echo $fetch->remarks_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="Upload"></i> </div> </div> </form> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('Admin.Layout.main_layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\xampp\htdocs\iimtlms\resources\views/admin/edit_financial.blade.php ENDPATH**/ ?>