@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content')
Change Password

Change Password

@if (session('error')) {{ session('error') }} @endif {!! Form::open(['action' => 'HomeController@changePassword', 'method' => 'POST', 'class' => 'form-horizontal','autocomplete'=>'off', 'data-parsley-validate']) !!} {{ csrf_field() }}
@if ($errors->has('currentPwd')) {{ $errors->first('currentPwd') }} @endif
@if ($errors->has('newPwd')) {{ $errors->first('newPwd') }} @endif
@if ($errors->has('newPwdConfirm')) {{ $errors->first('newPwdConfirm') }} @endif
{{Form::reset('Reset', ['class'=>'btn btn-primary'])}}
{!! Form::close() !!}
@endsection