@extends('layouts.master-vnext') @section('page-title') Edit user - {{ $user->name }} @endsection @section('content') @include('common.errors') {{ Form::model($user, [ 'action' => ['UserController@updatePassword', $user->id]]) }} {{ method_field('PUT') }} {{ Form::customPassword('password') }} {{ Form::customPassword('password_confirmation') }}
{{ Form::close() }} @endsection