Files
lucent-laravel/front/views/records-editor/fieldHeader.blade.php
T
2024-09-28 18:36:18 +03:00

18 lines
496 B
PHP

<div class="field-header">
<div class="labels">
<div class="label-and-help">
<label for={{$id}}
>{{$field->label}}</label
>
@if(!empty($field->help))
<small class="help-text light-text">{{$field->help}}</small>
@endif
</div>
<span
tabindex="-1"
class="text-decoration-none"
><code class="field-id">{{$field->name}}</code>
</span>
</div>
</div>