IMMREX7
<?php $__env->startSection('content'); ?>
<?php if($result == 1): ?>
<div class="alert alert-success">
<strong>Password update!</strong> You successfully reset the password of father and mother mobile number login.
</div>
<?php else: ?>
<div class="alert alert-danger">
<strong>Password update!</strong> Failed to update the password of student login.
</div>
<?php endif; ?>
<div class="row clearfix">
<div class="col-sm-12">
<div class="card">
<div class="header">
<h2><strong>Students Management</strong></h2>
</div>
<div class="body table-responsive">
<?php if(isset($student)): ?>
<p>You have successfully reset the password for the account below.</p>
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>Relation</th>
<th>Mobile</th>
<th>Updated On</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Father</td>
<td><?php echo e($student->father_mobile); ?></td>
<td><?php echo e(Carbon\Carbon::now()->format('d-M-Y H:i:s')); ?></td>
</tr>
<tr>
<th scope="row">2</th>
<td>Mother</td>
<td><?php echo e($student->mother_mobile); ?></td>
<td><?php echo e(Carbon\Carbon::now()->format('d-M-Y H:i:s')); ?></td>
</tr>
</tbody>
</table>
<?php else: ?>
<p>Invalid student information</p>
<?php endif; ?>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('schools.school_layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
Copyright © 2021 -