@inject('ind_helper', 'App\Helpers\IndustryTypeHelper')
{{ ym_select([ 'label' => 'Industry Type', 'name' => 'industry_type_id', 'required' => true, 'placeholder' => 'Select Industry Type', 'options' => $ind_helper->dropdown(), 'value' => $model->industry_type_id, ]) }} {{ ym_select([ 'label' => 'Is RFPNepal Member?', 'name' => 'is_rfpnepal_member', 'required' => true, 'placeholder' => 'Select Is RFPNepal Member?', 'options' => config('dropdown.yes_no'), 'value' => $model->is_rfpnepal_member, ]) }} {{ ym_select([ 'label' => 'Customer Conversion Method', 'name' => 'customer_conversion_method_id', 'required' => true, 'placeholder' => 'Select Customer Conversion Method', 'options' => config('dropdown.customer_conversion_method'), 'value' => $model->customer_conversion_method_id, ]) }}
is_buyer ?? '') ? 'checked' : '' }}> @error('is_buyer')
{{ $message }}
@enderror
is_provider ?? '') ? 'checked' : '' }}> @error('is_provider')
{{ $message }}
@enderror
{{ ym_input([ 'type' => 'text', 'label' => 'Organization Name', 'name' => 'org_name', 'required' => true, 'value' => $model->org_name, ]) }} {{ ym_input([ 'type' => 'email', 'label' => 'Organization Email', 'name' => 'org_email', 'value' => $model->org_email, ]) }} {{ ym_input([ 'type' => 'text', 'label' => 'Working Area 1', 'name' => 'working_area_1', 'required' => true, 'value' => $model->working_area_1, ]) }} {{ ym_input([ 'type' => 'text', 'label' => 'Working Area 2', 'name' => 'working_area_2', 'required' => true, 'value' => $model->working_area_2, ]) }} {{ ym_input([ 'type' => 'text', 'label' => 'Working Area 3', 'name' => 'working_area_3', 'required' => true, 'value' => $model->working_area_3, ]) }} {{ ym_input([ 'type' => 'number', 'label' => 'Organization Phone', 'name' => 'org_phone', 'value' => $model->org_phone, ]) }} {{ ym_input([ 'type' => 'text', 'label' => 'Organization Address', 'name' => 'org_address', 'value' => $model->org_address, ]) }} {{ ym_input([ 'type' => 'text', 'label' => 'Organization Website', 'name' => 'org_website', 'value' => $model->org_website, ]) }} {{ ym_input([ 'type' => 'text', 'label' => 'Contact Person Name', 'name' => 'contact_person_name', 'value' => $model->contact_person_name, ]) }} {{ ym_input([ 'type' => 'email', 'label' => 'Contact Person Email', 'name' => 'contact_person_email', 'value' => $model->contact_person_email, ]) }} {{ ym_input([ 'type' => 'number', 'label' => 'Contact Person Phone', 'name' => 'contact_person_phone', 'value' => $model->contact_person_phone, ]) }} {{ ym_input([ 'type' => 'number', 'label' => 'Customer Priority', 'name' => 'customer_priority', 'value' => $model->customer_priority ?? 0, ]) }}
{{ ym_textarea([ 'label' => 'Remarks', 'name' => 'remarks', 'value' => $model->remarks, ]) }}