OwlCyberSecurity - MANAGER
Edit File: 8f4efacc542ba593f62ac7b32edb50edfd542b57.php
<?php $__env->startSection('title'); ?> Account Dashboard <?php $__env->stopSection(); ?> <?php $__env->startSection('home'); ?> active <?php $__env->stopSection(); ?> <?php $__env->startSection('levelCSS'); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('body'); ?> <?php if(session()->has('success')): ?> <div class="col-sm-12"> <div class="alert alert-success"><h5><?php echo e(session()->get('success')); ?></h5></div> </div> <?php endif; ?> <?php if(session()->has('error')): ?> <div class="alert alert-warning"><h5><?php echo session()->get('error'); ?></h5></div> <?php endif; ?> <div class="col-sm-4"> <div class="panel theme-panel panel-danger"> <div class="col-sm-12"> <div class="panel-heading"> <span class="panel-title"> Your VIP Package </span> </div> <div class="panel-body"> <div class="row clearfix"> <div class="col-sm-12 column"> <?php if(currentUser()->subscription_status=='0'): ?> <center> <h5 class="text-danger">YOU DO NOT CURRENTLY HAVE A RUNNING SUBSCRIPTION PLAN</h5> <?php if(currentUser()->sub_count>0): ?> <h5 class="text-warning text-uppercase">YOUR LAST SUBSCRIPTION OF <strong><?php echo e(currentUser()->sub->category); ?> PLAN (<?php echo e(currentUser()->sub->planName); ?>)</strong> EXPIRED ON <strong><?php echo e(\Carbon\Carbon::parse(currentUser()->next_due_date)->format('d M, Y @ h:ia')); ?></strong></h5> <hr> <div class="btn-group"> <a href="<?php echo e(route('/account/make_payment')); ?>"><button class="btn btn-sm btn-success">RENEW PLAN</button></a> <a href="<?php echo e(route('/vip')); ?>"><button class="btn btn-sm btn-warning">PICK NEW PLAN</button></a> </div> <?php endif; ?> </center> <?php else: ?> <div class="feature-box"> <span class="feature-icon"><i class="fa fa-diamond"></i></span> <h3><?php echo e(currentUser()->sub->category); ?> Tips</h3> <span><strong><?php echo e(currentUser()->sub->planName); ?> Plan</strong></span> <br> <span>Date: <strong class="text-success"><?php echo e(\Carbon\Carbon::parse(currentUser()->date_subscribed)->format('d M, Y @ h:ia')); ?></strong></span> <br> <span>Expiry: <strong class="text-danger"><?php echo e(\Carbon\Carbon::parse(currentUser()->next_due_date)->format('d M, Y @ h:ia')); ?></strong></span> </div> <center> <?php $url = currentUser()->sub->category; ?> <a href="<?php echo e(route("/predictions/$url")); ?>"><button class="btn btn-sm btn-success">VIEW YOUR GAMES</button></a> <?php if(currentUser()->sub->category=='Weekend'): ?> <br> <br> <p>Bonus Access</p> <a href="<?php echo e(route("/predictions/Regular")); ?>"><button class="btn btn-sm btn-success">VIEW REGULAR TIPS</button></a> <?php endif; ?> </center> <?php endif; ?> </div> </div> </div> </div> </div> </div> <div class="col-sm-8"> <div class="panel theme-panel"> <div class="col-sm-12"> <div class="panel-heading"> <span class="panel-title"> Account Overview </span> </div> <div class="panel-body"> <div class="row clearfix"> <div class="col-sm-3"> <img src="<?php if(currentUser()->passport): ?> <?php echo e($localPath); ?>/users/<?php echo e(currentUser()->passport); ?> <?php else: ?> <?php echo e($localPath); ?>/avatar.png <?php endif; ?>" class="img-rounded img-responsive" alt="Profile Picture"> </div> <div class="col-sm-9"> <table class="table table-striped table-bordered"> <tr> <th>Full Name</th> <td><?php echo e(currentUser()->full_name); ?></td> </tr> <tr> <th>Email</th> <td><?php echo e(currentUser()->email); ?></td> </tr> <tr> <th>Phone Number</th> <td><?php echo e(currentUser()->phone); ?></td> </tr> <tr> <th>Registered</th> <td><?php echo e(\Carbon\Carbon::parse(currentUser()->created_at)->format('d M, Y @ h:ia')); ?></td> </tr> <?php if(currentUser()->username): ?> <tr> <th>Username</th> <td><?php echo e(currentUser()->username); ?></td> </tr> <?php endif; ?> <?php if(currentUser()->country): ?> <tr> <th>Country/State</th> <td><?php echo e(currentUser()->country); ?>/<?php echo e(currentUser()->state); ?></td> </tr> <?php endif; ?> </table> </div> <div class="col-sm-12 text-center"> <a href="<?php echo e(route('/account/update_profile')); ?>"><button class="btn btn-danger btn-md">Edit Profile</button></a> </div> </div> </div> </div> </div> </div> <div class="panel theme-panel"> <div class="panel-heading"> <span class="panel-title"> Free Prediction Markets </span> </div> <div class="panel-body"> <?php echo $__env->make('partials.stores', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> </div> </div> <?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(); ?>