mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-16 15:33:44 +01:00
6 lines
330 B
PHP
6 lines
330 B
PHP
|
<div class="input-group">
|
||
|
<div class="input-group-prepend"><span class="input-group-text">{{$title}}</span></div>
|
||
|
<input type="number" name="{{$name}}" class="form-control" min="{{$min ?? 0}}" max="{{$max ?? 99999}}"
|
||
|
step="{{$step ?? 1}}" value="{{$value ?? ''}}" {{(isset($required))? 'required': ''}}>
|
||
|
</div>
|