9 lines
465 B
PHP
9 lines
465 B
PHP
<!-- {{ $fieldTitle }} Field -->
|
|
<div class="form-group col-sm-6">
|
|
@if($config->options->localized)
|
|
@{!! Form::label('{{ $fieldName }}', __('models/{{ $config->modelNames->camelPlural }}.fields.{{ $fieldName }}').':') !!}
|
|
@else
|
|
@{!! Form::label('{{ $fieldName }}', '{{ $fieldTitle }}:') !!}
|
|
@endif
|
|
@{!! Form::select('{{ $fieldName }}', @php echo htmlspecialchars_decode($selectValues) @endphp, null, ['class' => 'form-control custom-select']) !!}
|
|
</div> |