@extends('admin.layouts.layouts') @section('title', 'Change Password | Profile') @section('content')
{!! Form::open([ 'route' => 'update-password', 'method' => 'POST', 'id' => 'validate_form_change_password', 'class' => 'forms-sample', ]) !!}
{{ $errors->first('old_password') }}
{{ $errors->first('new_password') }}
{{ $errors->first('confirm_password') }}
Cancel {{ Form::close() }}
@endsection @section('page-js') @endsection