{!! html()->form('POST', route('proactive-reactive-type.store'))->id('proactiveReactiveTypeForm')->open() !!}
{{-- name --}}
{!! html()->label('Name *', 'name')->toHtml() !!} {!! html()->text('name')->class('form-control')->placeholder('Enter Name') !!}
{{-- is_proactive --}}
{!! html()->label('Is Proactive ', 'is_proactive')->toHtml() !!} {!! html()->select('is_proactive', ['' => 'Select One', '1' => 'Yes', '0' => 'No'], old('is_proactive', ''))->class('form-control')->id('is_proactive') !!}
{!! html()->form()->close() !!}