@extends('layouts.admin') @section('content')
Change Password
@include('inc.messages')
{!! Form::open(['action','ChangeController@changepassword','class'=>'form-horizontal','role'=>'form','enctype'=>'multipart/form-data']) !!}
@if ($errors->has('current_password')) {{ $errors->first('current_password') }} @endif
@if ($errors->has('new_password')) {{ $errors->first('new_password') }} @endif
{{ Form::button(' Change', ['type' => 'submit', 'name'=>'btnSave', 'class' =>'btn red btn-sm'] ) }}
{{ Form::close() }}
@endsection