{{ ym_input([ 'type' => 'text', 'name' => 'tender_title', 'label' => 'Tender Title', 'placeholder' => 'Title', 'value' => request()->tender_title ?? null, ]) }} {{ ym_input([ 'type' => 'text', 'name' => 'tender_code', 'label' => 'Tender Code', 'placeholder' => 'Code', 'value' => request()->tender_code ?? null, ]) }} {{ ym_input([ 'type' => 'text', 'name' => 'org_name', 'label' => 'Organization', 'placeholder' => 'Organization Name', 'value' => request()->org_name ?? 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, ]) }}
Reset