@extends('dashboard::master') {{-- Autor: Giovanni López O. @gmlo_89 --}} @section('head') @stop @section('content')

{{ $user->name }} {{ trans('users::label.change_password') }}

{{ Alert::render() }}
@if(isset($myPassword))
{{ trans('dashboard::label.go_back') }}
@else
{{ trans('dashboard::label.go_back') }}
@endif
{{ Form::model($user, $formOptions) }}
{{ trans('users::label.access_info') }}
{{ Form::text('username', null, array( "class" => "form-control required", "id" => "inputUsername", "placeholder" => trans('users::label.username'), "readonly" => "readonly", "disabled" => "disabled" )) }}
{{ Form::password('password', array( "class" => "form-control required", "id" => "password" )) }}
{{ Form::password('password_confirmation', array( "class" => "form-control required", "id" => "password_confirmation" )) }}
@stop @section('scripts') @stop