WordPress

Coming Soon

revealability
<?php $__env->startSection('title','Edit Profile'); ?> <?php $__env->startSection('main_container'); ?> <!-- partial --> <div class="main-panel"> <div class="content-wrapper"> <div class="page-header"> <h3 class="page-title"> Profile Setting </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">Setting</li> </ol> </nav> </div> <div class="row"> <div class="col-md-6 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h4 class="card-title"></h4> <p class="card-description"> </p> <form class="forms-sample" action="<?php echo e(url('/edit_account/'.$fetch->id)); ?>" method="post" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div class="form-group"> <label for="exampleInputUsername1">Name Of Applicant</label> <input type="text" value="<?php echo $fetch->name_applicant?>" name="name_applicant" class="form-control" > <?php if($errors->has('name_applicant')): ?> <span class="text-danger"><?php echo e($errors->first('name_applicant')); ?></span> <?php endif; ?> </div> <div class="form-group"> <label for="exampleInputUsername1">Email</label> <input id="last_name" type="text" value="<?php echo $fetch->email?>" name="email" class="form-control" > <?php if($errors->has('email')): ?> <span class="text-danger"><?php echo e($errors->first('email')); ?></span> <?php endif; ?> </div> <div class="form-group"> <label for="exampleInputUsername1">Phone number</label> <input id="phone" type="tel" value="<?php echo $fetch->phone?>" name="phone" class="form-control" > </div> <div class="form-group"> <label for="exampleInputEmail1">Document</label> <input type="file" class="form-control" name="profile_img" > </div> <button type="submit" class="btn btn-primary mr-2">Submit</button> <button class="btn btn-light">Cancel</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 C:\xampp\htdocs\iimtlms\resources\views/User/edit_profile.blade.php ENDPATH**/ ?>