27 lines
1018 B
HTML
27 lines
1018 B
HTML
<!-- Number -->
|
|
<?php if ($this->previewMode): ?>
|
|
<span class="form-control"><?= isset($field->value) ? e($field->value) : ' ' ?></span>
|
|
<?php else: ?>
|
|
<?php
|
|
$min = isset($field->config['min']) ? $field->config['min'] : false;
|
|
$max = isset($field->config['max']) ? $field->config['max'] : false;
|
|
$step = isset($field->config['step']) ? $field->config['step'] : 'any';
|
|
?>
|
|
|
|
<input
|
|
type="number"
|
|
step="<?= $step ?>"
|
|
name="<?= $field->getName() ?>"
|
|
id="<?= $field->getId() ?>"
|
|
value="<?= e($field->value) ?>"
|
|
placeholder="<?= e(trans($field->placeholder)) ?>"
|
|
class="form-control"
|
|
autocomplete="off"
|
|
<?= $min ? 'min="' . $min . '"' : ''; ?>
|
|
<?= $max ? 'max="' . $max . '"' : ''; ?>
|
|
<?= $field->hasAttribute('pattern') ? '' : 'pattern="-?\d+(\.\d+)?"' ?>
|
|
<?= $field->hasAttribute('maxlength') ? '' : 'maxlength="255"' ?>
|
|
<?= $field->getAttributes() ?>
|
|
/>
|
|
<?php endif ?>
|