IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/resources/views/students/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/resources/views/students/updt_password.blade.php

@extends('students.student_layout')
@section('content')
@if(Auth::guard('student')->user()->isUpdated == 'N')
<div class="alert alert-danger">
                    <strong>In Order to proceed further you have to update your password.</strong>
</div>
@endif
<div class="row clearfix">
    
    <div class="col-sm-6 col-sm-offset-3">
        <div class="card">
            <div class="header">
                <h2><strong>Update Password</strong></h2>
            </div>
            <div class="body">
                
                {!! Form::open(['url' => 'student/updtpassword','class'=>'form-horizontal']) !!}
                
                <div class="row clearfix">
                    <div class="col-sm-4 form-control-label">
                        <label for="classname">New Password :</label>
                    </div>
                    <div class="col-sm-6">
                        <div class="form-group">
                            <input id="password" type="password" class="form-control" name="password" required autocomplete="off">
                            @if ($errors->has('password'))
                            <label id="minmaxlength-error" class="error" for="minmaxlength">
                                <strong>{{ $errors->first('password') }}</strong>
                            </label>
                            @endif
                        </div>
                    </div>
                </div>
                <div class="row clearfix">
                    <div class="col-sm-4 form-control-label">
                        <label for="classname">Confirm Password :</label>
                    </div>
                    <div class="col-sm-6">
                        <div class="form-group">
                            <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required autocomplete="off">
                            @if ($errors->has('password'))
                            <label id="minmaxlength-error" class="error" for="minmaxlength">
                                <strong>{{ $errors->first('password') }}</strong>
                            </label>
                            @endif
                        </div>
                    </div>
                </div>
                <div class="row clearfix">
                    <div class="col-sm-8 offset-sm-2">
                        {!! Form::submit('UPDATE',['class' => 'btn btn-raised btn-primary btn-round waves-effect']) !!}
                        {!! Form::close() !!} 
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
@stop

Copyright © 2021 - 2025 IMMREX7