OwlCyberSecurity - MANAGER
Edit File: 1aa3594d3a7c7d63608284db09a0417caa64fde3.php
<div class="row"> <?php if($creator->accounttype=='PAID'): ?> <div class="col-md-6"> <table class="table table-striped"> <tr> <th>FULL NAME</th> <td><?php echo e($creator->user_name); ?></td> </tr> <tr> <th>EMAIL</th> <td><?php echo e($creator->email); ?></td> </tr> <tr> <th>PHONE</th> <td><?php echo e($creator->phone); ?></td> </tr> <tr> <th>ACCOUNT TYPE</th> <td><?php echo e($creator->accounttype); ?></td> </tr> <tr> <th>TOKEN</th> <td><?php echo e($creator->token); ?></td> </tr> <tr> <th>TOKEN TYPE</th> <td><?php echo e($creator->tokentype); ?></td> </tr> <tr> <th>TOTAL EVENTS</th> <td><?php echo e($creator->totalevents); ?></td> </tr> <tr> <th>DATE REGISTERED</th> <td><?php echo e($creator->dateregistered); ?></td> </tr> <tr> <th>NEXT DUE</th> <td><?php echo e($creator->nextduedate); ?></td> </tr> <tr> <th>ACCOUNT STATUS</th> <?php if($creator->accountstatus=='0'): ?> <td>ACTIVE</td> <?php else: ?> <td><span class="red">DEACTIVATED</span></td> <?php endif; ?> </tr> </table> </div> <div class="col-md-6"> <table class="table table-striped"> <tr> <th> <?php if($creator->profilepicture==NULL): ?> <span class="fa fa-user fa-5x" style="font-size: 950%;"></span> <?php else: ?> <img src="<?php echo e($path); ?><?php echo e($creator->profilepicture); ?>" style="max-height: 120px;"> <?php endif; ?> </th> <th> <?php if($creator->profilepicture==NULL): ?> <span class="fa fa-support fa-5x" style="font-size: 850%;"></span> <?php else: ?> <img src="<?php echo e($path); ?><?php echo e($creator->logo); ?>" style="max-height: 120px;"> <?php endif; ?> </th> </tr> <tr> <th>COMPANY</th> <td><?php echo e($creator->association); ?></td> </tr> <tr> <th>ADDRESS</th> <td><?php echo e($creator->address); ?></td> </tr> <tr> <th>CITY</th> <td><?php echo e($creator->city); ?></td> </tr> <tr> <th>STATE</th> <td><?php echo e($creator->state); ?></td> </tr> <tr> <th>CONTACT PERSON</th> <td><?php echo e($creator->contactperson); ?></td> </tr> <tr> <th>STATUS</th> <?php if($creator->status=='0'): ?> <td>ACTIVE</td> <?php else: ?> <td><span class="red">DEACTIVATED</span></td> <?php endif; ?> </tr> </table> </div> <?php else: ?> <div class="col-md-8 col-md-offset-2"> <table class="table table-striped"> <tr> <th>FULL NAME</th> <td><?php echo e($creator->user_name); ?></td> </tr> <tr> <th>EMAIL</th> <td><?php echo e($creator->email); ?></td> </tr> <tr> <th>PHONE</th> <td><?php echo e($creator->phone); ?></td> </tr> <tr> <th>ACCOUNT TYPE</th> <td><?php echo e($creator->accounttype); ?></td> </tr> <tr> <th>TOTAL EVENTS</th> <td><?php echo e($creator->totalevents); ?></td> </tr> <tr> <th>DATE REGISTERED</th> <td><?php echo e($creator->created_at); ?></td> </tr> </table> </div> <?php endif; ?> </div>