{{-- Asset Hierarchy Dropdown --}}
{{-- Include the asset hierarchy dropdown --}}
@include('backend.threats.threat-assest-hierarchy-dropdown' )
{{-- Select2 Section 1 --}}
{!! html()->label('Search Opportunity ', 'threat')->toHtml() !!}
{!! html()->select('threat[]', [
'' => 'Select Opportunity',
])->id('threatInput')->addClass('form-control')->attribute('data-placeholder', 'Select Opportunity') !!}
{!! html()->label('Workstream ', 'sel2WorkstreamSearch') !!}
{!! html()->select('sel2WorkstreamSearch[]', [])->id('sel2WorkstreamSearch')->multiple()->addClass('form-control') !!}
{{-- Hashtag --}}
{!! Html::text('hashtag')->id('inputHashtag')->class('form-control')->placeholder('Search Hashtag') !!}
{!! html()->label('Overall Status ', 'overall_status') !!}
{!! html()->select('overall_status[]', $statuses, isset($reqData['overall_status']) ? (array) $reqData['overall_status'] : [])->id('sel2OverallStatusSearch')->multiple()->addClass('form-control') !!}
{{-- Select2 Section 2 --}}
{!! html()->label('Opportunity Owner ', 'threat_users')->toHtml() !!}
{!! html()->select('threatUsers[]')->id('threatUsers')->multiple()->addClass('form-control') !!}
{!! html()->label('Other Users Opportunity ', 'other_users')->toHtml() !!}
{!! html()->select('otherUsers[]')->id('otherUsers')->multiple()->addClass('form-control') !!}
{!! Html::text('search_other_threat')->id('inputSearchOtherThreat')->class('form-control')->placeholder('Search Other Threat') !!}
{{-- Label, and prepend icon --}}