wip file field

This commit is contained in:
2024-09-28 18:36:18 +03:00
parent 5ed57838fc
commit 39e7a3aed4
25 changed files with 674 additions and 44 deletions
@@ -0,0 +1,18 @@
<div>
<input
type="text"
id="{{$id}}"
value="{{$value}}"
class="form-control {{!empty($errorMessage) ? "is-invalid" : "" }}"
autocomplete="off"
{{$field->readonly && !$createMode ? "readonly" : ""}}
/>
<div class="system-help-text light-text">
Leave this empty to autogenerate from <i>{{$field->source}}</i>
</div>
@if($errorMessage)
<div class="invalid-feedback d-block">
{{$errorMessage}}
</div>
@endif
</div>