Braunson\LaravelHTML5Forms\FormBuilder::tel PHP Method

tel() public method

Create a form tel field.
public tel ( string $name, string $value = null, array $options = [] ) : string
$name string
$value string
$options array
return string
    public function tel($name, $value = null, $options = array())
    {
        return $this->input('tel', $name, $value, $options);
    }