@extends('layouts.default')
@section('content')
{{ trans('labels.username') }}
{{ Form::open(array('action' => 'UserController@putUpdate', '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.role') }} :
{{ Form::text('role', $user->role, array($acl['god']['r'])) }}
{{ Form::checkbox('chPassword', '1', false, array('onClick="togglePass(this);"')) }} change password
{{ trans('labels.passwd') }} :
{{ Form::password('password') }}
{{ trans('labels.passwd') }} :
{{ Form::password('password_new') }}
{{ Form::password('password_confirm') }}
{{ Form::hidden('id', $user->id) }}
{{ Form::close() }}
@endsection