mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-24 09:42:43 +01:00
3 lines
372 B
PHP
Executable File
3 lines
372 B
PHP
Executable File
<?php if ($field->has('label')): ?><label for="<?= $field->name() ?>"><?= $field->label() ?></label><?php endif; ?>
|
|
<input type="number" id="<?= $field->name() ?>" name="<?= $field->name() ?>" min="<?= $field->get('min') ?>" max="<?= $field->get('max') ?>" step="<?= $field->get('step') ?>" value="<?= $field->value() ?>"<?= $field->get('required') ? ' required' : '' ?>>
|