@extends('layouts.default') {{-- Page Title --}} @section('title') Change Password @parent @stop {{-- Content --}} @section('content')

Change Password Cancel


@csrf {{--Email--}} @include('components.form.input_row', [ 'type' => 'password', 'name' => 'old_password', 'label' => 'Old Password', 'validation' => 'minLength="8" maxLength="30"', 'label_class' => 'col-sm-4', 'input_class' => 'col-sm-8' ])
{{--Passowrd--}} @component('components.form.input_row', [ 'type' => 'password', 'name' => 'password', 'label' => 'New Password', 'validation' => 'minLength="8" maxLength="30"', 'label_class' => 'col-sm-4', 'input_class' => 'col-sm-8' ]) Must be at least 8 characters, contains both alphabets and digits. @endcomponent {{--Passowrd Confirm--}} @include('components.form.input_row', [ 'type' => 'password', 'name' => 'password_confirmation', 'label' => 'New Password Confirmation', 'validation' => 'minLength="8" maxLength="30"', 'label_class' => 'col-sm-4', 'input_class' => 'col-sm-8' ]) {{--Submit--}}
@endsection