@extends('layouts.main') @section('title', 'User Management') @section('breadcrumb')

Reset Password

@endsection @section('content')
{{ Form::model($form, ['method'=>'post', 'autocomplete'=>'off']) }} {{ Form::token() }}
{{ Form::label('old_password', 'Old Password') }} @if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
{{ Form::label('new_password', 'New Password') }} @if ($errors->has('new_password')) {{ $errors->first('new_password') }} @endif
{{ Form::label('r_new_password', 'Re-type New Password') }} @if ($errors->has('r_new_password')) {{ $errors->first('r_new_password') }} @endif
{{ Form::close() }}
@endsection @section('footer_scripts') @endsection