old() public method

Get a value from the session's old input.
public old ( string $name ) : mixed
$name string
return mixed
 /**
  * Get a value from the session's old input.
  *
  * @param string $name
  * @return mixed 
  * @static 
  */
 public static function old($name)
 {
     return \Collective\Html\FormBuilder::old($name);
 }