@extends('layouts.admin.master') @section('title', 'Change Current Password') @section('content') @include('layouts.admin.flash.alert') Change Password {{ Breadcrumbs::render('common',['append' => [['label'=> "Change Password"]]]) }} {{ __("Change Password") }} {{ Form::open(['route' => 'admin.updatepassword']) }} Current Password @if ($errors->has('current-password')) {{ $errors->first('current-password') }} @endif New Password @if ($errors->has('new-password')) {{ $errors->first('new-password') }} @endif Confirm New Password {{ Form::close() }} @stop