OwlCyberSecurity - MANAGER
Edit File: a597b45b8d349f1cba6efd21b9ebea65eede8a6b.php
<?php $__env->startSection('title'); ?> Update Profile <?php $__env->stopSection(); ?> <?php $__env->startSection('home'); ?> active <?php $__env->stopSection(); ?> <?php $__env->startSection('levelCSS'); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('body'); ?> <form action="<?php echo e(route('/my_pesa/updateProfile')); ?>" id="updateProfile" method="post" enctype="multipart/form-data"> <div class="col-sm-10 col-sm-offset-1"> <div class="row"> <div class="col-sm-12"> <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title"> Account Details </h3> </div> <div class="panel-body"> <div class="row"> <div class="col-sm-12"> <div class="form-group col-sm-8"> <label for="">Full Name *</label> <input type="text" class="form-control" required placeholder="full name here" name="full_name" value="<?php echo e(currentUser()->full_name); ?>"> </div> <div class="form-group col-sm-4"> <label for="">Username</label> <input type="text" class="form-control" placeholder="username here" name="username" value="<?php echo e(currentUser()->username); ?>"> </div> <?php echo e(csrf_field()); ?> <div class="form-group col-sm-6"> <label for="">Email Address *</label> <input type="email" class="form-control" required placeholder="email address here" name="email" value="<?php echo e(currentUser()->email); ?>"> </div> <div class="form-group col-sm-6"> <label for="">Phone Number *</label> <input type="text" class="form-control" required placeholder="phone number here" name="phone" value="<?php echo e(currentUser()->phone); ?>"> </div> <div class="form-group col-sm-6"> <label for="">Country *</label> <input type="text" class="form-control" required placeholder="country here" name="country" value="<?php echo e(currentUser()->country); ?>"> </div> <div class="form-group col-sm-6"> <label for="">State/City/Province</label> <input type="text" class="form-control" placeholder="state/city here" name="state" value="<?php echo e(currentUser()->state); ?>"> </div> <div class="form-group col-sm-6"> <label for="">New Password</label> <input type="password" class="form-control" placeholder="leave blank if not changing" name="password"> </div> <div class="form-group col-sm-6"> <label for="">Confirm Password</label> <input type="password" class="form-control" placeholder="leave blank if not changing" name="password_confirmation"> </div> <div class="form-group col-sm-12"> <button class="btn btn-md btn-primary" id="updateBtn">Save Updates</button> </div> </div> </div> </div> </div> </div> </div> </div> </form> <?php $__env->stopSection(); ?> <?php $__env->startSection('levelJS'); ?> <?php $__env->stopSection(); ?> <?php echo $__env->make('account.layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>