Files
opensem/resources/views/components/form/label.blade.php
Ludovic CANDELLIER fd1ab5cf04 fix
2022-12-22 18:16:25 +01:00

7 lines
211 B
PHP

@if ($label ?? false)
{{ Form::label($name ?? '', ucfirst($label) . (($required ?? false) ? ' *' : ''), [
'class' => ($classlabel ?? '')
]) }}
@if (!($horizontal ?? false))<br/>@endif
@endif