Files
RomhackPlaza/resources/views/components/form-field-title.blade.php

11 lines
209 B
PHP
Raw Normal View History

2026-05-20 18:25:15 +02:00
<label class="form-label">
{{ $name }}
@if( $required )
<span style="color:red">*</span>
@endif
@if( $helper !== "" )
<span>{{ $helper }}</span>
@endif
</label>
{{ $slot }}