@extends('layouts.default') @section('content')

{{ trans('labels.username') }}

{{ Form::open(array('action' => 'UserController@putPassword', 'method' => 'put')) }}
{{ trans('labels.name') }} :
{{ Form::text('actor', $user->actor_name . ' ' . $user->actor_surname, array('readonly')) }}
{{ trans('labels.username') }} :
{{ Form::text('username', $user->username) }}
{{ trans('labels.passwd') }} :
{{ Form::password('password') }}
{{ trans('labels.passwd') }} :
{{ Form::password('password_new') }}

 
{{ Form::password('password_confirm') }}
 
{{ Form::submit('OK' , array( 'class' => 'button bn ok')) }}
{{ Form::hidden('id', $user->id) }} {{ Form::close() }} @endsection