@extends('admin.layouts.master') @section('title')

{{trans('admin.Change Password')}}

@stop @section('content')
{!! Form::model($row, ['url' => 'admin/'.$module.'/change-password', 'method' => 'post','class'=>'form-horizontal style-form','enctype'=>'multipart/form-data'] ) !!} @php $input='old_password'; @endphp
{!! Form::label($input,trans('admin.Old password'),['class' => 'col-md-2 control-label']) !!}
{!! Form::password($input,['class'=>'form-control','required'=>'required']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='password'; @endphp
{!! Form::rawLabel($input,trans('admin.Password'),['class' => 'col-md-2 control-label']) !!}
{!! Form::password($input,['class'=>'form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='password_confirmation'; @endphp
{!! Form::rawLabel($input,trans('admin.Password confirmation'),['class' => 'col-md-2 control-label']) !!}
{!! Form::password($input,['class'=>'form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
{!! Form::submit(trans('admin.Save') ,['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@stop