@extends('backend.includes.panel') @section('page_css') @stop @section('page_title','Change password') @section('main_content')
{{ Form::open(['route' => 'backend.set.password','class'=>'form-horizontal form-material','data-parsley-validate'=>'','method'=>'POST','autocomplete'=>'off','id'=>'changePasswordForm']) }}

Update your password

Change password at regular basis to keep it mnore secure
{{ Form::password('current_password',['class'=>'form-control','placeholder'=>'Current Password','data-parsley-required'=>'true','autofocus'=>'true','id'=>'current_password']) }}
{{ Form::password('new_password',['class'=>'form-control','placeholder'=>'New Password','data-parsley-required'=>'true','id'=>'new_password','data-parsley-notequalpass'=>'#current_password','autofocus'=>'true']) }}
{{ Form::password('confirm_password',['class'=>'form-control','placeholder'=>'Confirm Password','data-parsley-required'=>'true','data-parsley-equalto'=>'#new_password','autofocus'=>'true']) }}
{{ Form::close() }}
@stop @section('page_script') @stop