php - Laravel Form::password is not showing value if it is read only

one text

Laravel Form::password is not showing value if it is read only - but working well with Form::text

Form::password('password', array('readonly', 'value'=> $item ? $item->password : null, 'class'=>'form-control', 'required' => true))

enter image description here

Source