mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
15 lines
616 B
PHP
15 lines
616 B
PHP
@push('componentScripts')
|
|
<script src="/viewjs/components/datepicker.js"></script>
|
|
@endpush
|
|
|
|
<div class="form-group">
|
|
<label for="{{ $id }}">{!! $label !!} <span class="small text-muted"><time id="datepicker-timeago" class="timeago timeago-contextual"></time></span></label>
|
|
<div class="input-group date">
|
|
<input type="text" data-isodate="isodate" class="form-control datepicker" id="{{ $id }}" name="{{ $id }}" required autocomplete="off">
|
|
<div id="datepicker-button" class="input-group-addon">
|
|
<i class="fa fa-calendar"></i>
|
|
</div>
|
|
</div>
|
|
<div class="help-block with-errors"></div>
|
|
</div>
|