IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/resources/views/schools/students/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/resources/views/schools/students/pwd-reset.blade.php

@extends('schools.school_layout')
@section('content')
@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>
@else
<div class="alert alert-danger">
    <strong>Password update!</strong> Failed to update the password of student login.
</div>
@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">
                @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>{{$student->father_mobile}}</td>
                            <td>{{Carbon\Carbon::now()->format('d-M-Y H:i:s')}}</td>
                        </tr>
                        <tr>
                            <th scope="row">2</th>
                            <td>Mother</td>
                            <td>{{$student->mother_mobile}}</td>
                            <td>{{Carbon\Carbon::now()->format('d-M-Y H:i:s')}}</td>
                        </tr>
                    </tbody>
                </table>
                @else
                <p>Invalid student information</p>
                @endif
            </div>
        </div>
    </div>
</div>
@stop

Copyright © 2021 - 2025 IMMREX7