18 lines
583 B
PHP
18 lines
583 B
PHP
|
|
<div class="form-group">
|
|
<label>{{$title}} </label>
|
|
<div class="input-group">
|
|
<input type="text" value="{{$value}}" oninput="znToMoney(this)" name="{{$id}}" id="{{$id}}" maxlength="{{$maxlength}}" class="form-control money text-right" placeholder="Isikan {{$title}}"/>
|
|
@if (isset($jenis))
|
|
<div class="input-group-append"><span class="input-group-text">{{$jenis}}</span></div>
|
|
@endif
|
|
</div>
|
|
|
|
|
|
@if (isset($label))
|
|
<span class="form-text text-muted"> <code id="label_{{$id}}">{{$label}}</code> </span>
|
|
@endif
|
|
|
|
</div>
|
|
|