WordPress

Coming Soon

revealability
<?php $__env->startSection('title','Profile'); ?> <?php $__env->startSection('main_container'); ?> <!-- partial --> <div class="main-panel"> <div class="content-wrapper"> <div class="page-header"> <h3 class="page-title"> Profile </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">Profile</li> </ol> </nav> </div> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-body"> <div class="row"> <div class="col-lg-4"> <div class="border-bottom text-center pb-4"> <?php if($fetch->profile_img) { ?> <img src="<?php echo e(asset('User/upload/User/'.$fetch->profile_img)); ?>" alt="profile" class="img-lg rounded-circle mb-3"> <?php } else{ ?> <img src="<?php echo e(url('Admin/images/user.png')); ?>" alt="profile" class="img-lg rounded-circle mb-3"/> <?php } ?> </div> <div class="py-4"> <p class="clearfix"> <span class="float-left"> Name Of Applicant </span> <span class="float-right text-muted"> <?php echo $fetch->name_applicant?> </span> </p> <p class="clearfix"> <span class="float-left"> Phone </span> <span class="float-right text-muted"> <?php echo $fetch->phone?> </span> </p> <p class="clearfix"> <span class="float-left"> Mail </span> <span class="float-right text-muted"> <?php echo $fetch->email?> </span> </p> </div> <a href="<?php echo e(url('edit_account/'.$fetch->id)); ?>" class="btn btn-primary center">Edit</a> <!-- <button type="submit" value="Send" href="" class="btn btn-primary center">Edit</button> --> </div> </div> </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/profile.blade.php ENDPATH**/ ?>