{{ ym_input([ 'type' => 'text', 'name' => 'tender_title', 'label' => 'Tender Title', 'placeholder' => 'Title', 'value' => request()->tender_title ?? null, ]) }} {{ ym_date([ 'name' => 'published_on', 'label' => 'Published Date', 'value' => request()->published_on ?? null, ]) }} {{ ym_select([ 'name' => 'opportunity_type_id', 'label' => 'Opportunity Type', 'placeholder' => 'Select Type', 'options' => config('dropdown.opportunity_type'), 'value' => request()->opportunity_type_id ?? null, ]) }} {{ ym_select([ 'name' => 'tender_status', 'label' => 'Tender Status', 'placeholder' => 'Select Status', 'options' => config('dropdown.tender_status'), 'value' => request()->tender_status ?? null, ]) }}
Reset