@extends('layouts.layout') @section('title', 'Reset Password') @section('content')

Change your Password


Reset Password
@if(Session::has('success')) @endif @if(count($errors) > 0) @endif {!! Form::open() !!} {!! Form::label('current_password', 'Current Password:') !!} {!! Form::password('current_password',['class'=>'form-control']) !!} {!! Form::label('password', 'New Password:') !!} {!! Form::password('password',['class'=>'form-control']) !!} {!! Form::label('password_confirmation', 'Confirm New Password:') !!} {!! Form::password('password_confirmation', ['class'=>'form-control']) !!} {!! Form::submit('Reset password', ['class'=>'btn btn-primary btn-lg margin-top-20']) !!} {!! Form::close() !!}
@endsection