mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-16 23:42:32 +01:00
d13e170f22
V2 (Laravel re-make)
6 lines
318 B
PHP
6 lines
318 B
PHP
<div class="input-group">
|
|
<div class="input-group-prepend"><span class="input-group-text">{{$title}}</span></div>
|
|
<input type="text" name="{{$name}}" class="form-control" minlength="{{$min ?? 0}}" maxlength="{{$max ?? 99999}}"
|
|
value="{{$value ?? ''}}" {{(isset($required))? 'required': ''}}>
|
|
</div>
|