1
0
mirror of https://github.com/cp6/my-idlers.git synced 2024-09-29 11:47:09 +02:00
my-idlers/resources/views/components/text-input.blade.php
2022-03-06 02:29:58 +11:00

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>