{!! icon('property-value') !!} {{ Form::text('title', null, [ 'class' => 'form-control form-control-lg' . ($errors->has('title') ? ' is-invalid' : ''), 'placeholder' => __('Title') ] ) }}
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
{{ Form::text('value', null, [ 'class' => 'form-control form-control-sm' . ($errors->has('value') ? ' is-invalid': ''), 'placeholder' => __('Leave empty to auto generate from title') ]) }} @if ($errors->has('value'))
{{ $errors->first('value') }}
@endif

@unless($hideProperties ?? false)
{{ Form::select('property_id', $properties, null, [ 'class' => 'form-control form-control-sm' . ($errors->has('property_id') ? ' is-invalid': ''), 'placeholder' => __('Choose Property') ]) }} @if ($errors->has('property_id'))
{{ $errors->first('property_id') }}
@endif
@endunless
{{ Form::text('priority', null, [ 'class' => 'form-control form-control-sm' . ($errors->has('priority') ? ' is-invalid': '') ]) }} @if ($errors->has('priority'))
{{ $errors->first('priority') }}
@endif