form::password PHP Method

password() public static method

public static password ( $name, $attributes = [] )
    public static function password($name, $attributes = array())
    {
        return static::input('password', $name, '', $attributes);
    }

Usage Example

 public function __toString()
 {
     if ($this->args->blank = TRUE) {
         $value = '';
     }
     return form::password($this->field_name, $value);
 }
All Usage Examples Of form::password