LaravelBook\Laravel4Powerpack\Form::openForFiles PHP Method

openForFiles() public method

Open a HTML form that accepts file uploads.
public openForFiles ( string $action = null, string $method = 'POST', array $attributes = [], boolean $https = null ) : string
$action string
$method string
$attributes array
$https boolean
return string
    public function openForFiles($action = null, $method = 'POST', $attributes = array(), $https = null)
    {
        $attributes['enctype'] = 'multipart/form-data';
        return $this->open($action, $method, $attributes, $https);
    }