LaravelBook\Laravel4Powerpack\Form::openSecureForFiles PHP Method

openSecureForFiles() public method

Open a HTML form that accepts file uploads with a HTTPS action URI.
public openSecureForFiles ( string $action = null, string $method = 'POST', array $attributes = [] ) : string
$action string
$method string
$attributes array
return string
    public function openSecureForFiles($action = null, $method = 'POST', $attributes = array())
    {
        return $this->openForFiles($action, $method, $attributes, true);
    }