@inject('industry_type_helper', 'App\Helpers\IndustryTypeHelper') @extends('organizations.layouts.default') @section('content')
@include('organizations.layouts.partials.breadcrumb')

@php $selectedAreas = []; @endphp @if ($resWorkingAreas->count() > 0) @foreach ($resWorkingAreas as $recArea) @php $selectedAreas[] = $recArea->id; @endphp {{ $recArea->area_name }} @endforeach @else
You have not set working areas yet.
@endif

Please click here to update and get relevant opportunites notification.

@csrf

Working Areas

Please set maximum 3 working areas best suited for your organization.

Selected Areas : @php echo count($selectedAreas); @endphp
@foreach ($resAllAreas as $recArea) @php $css = in_array($recArea->id, $selectedAreas) ? 'text-blue-800 font-bold' : ''; @endphp
id }} />
@endforeach
@csrf
@if ($org->verification_at)

Account verified.

Verified at: {{ $org->verification_at->format('Y M d') }}

Document Type: {{ config('dropdown.org_verification_docs.' . $org->verification_doc_type) }}

Current file

@else @if ($org->verification_request_at && $org->verification_at == null)

Under verification process.

@else

Account not verified.

@endif
{{ ym_select([ 'label' => 'Select Document Type', 'name' => 'verification_doc_type', 'required' => true, 'options' => config('dropdown.org_verification_docs'), 'value' => $org->verification_doc_type, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }} @csrf
Current file
@endif
@php if ($errors && count($errors) > 0) { $orgProfileView = 'false'; $orgProfileEdit = 'true'; } else { $orgProfileView = 'true'; $orgProfileEdit = 'false'; } @endphp
Organization Information Edit
Company/Firm/Individual
Contact Person
Org Type : {{ config('dropdown.organization_types.' . $org->type) }} Industry Type : {{ $org->industryType->type_name }} Name : {{ $org->name }} VAT/PAN : {{ $org->vat_number }} Business Regd. No. : {{ $org->business_regd_no }}
Phone : {{ $org->phone }}
Email : {{ $org->email }}
Website : {{ $org->website }}
Address : {{ $org->district?->english_name }} {{ $org->address_details }}
Name : {{ $org->contact_person_name }} Email : {{ $org->contact_person_email }} Phone : {{ $org->contact_person_phone }}

About Company

{!! $org->about_organization !!}
@method('PUT') @csrf
{{ ym_input([ 'type' => 'text', 'name' => 'name', 'required' => true, 'label' => 'Name', 'value' => $org->name, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_input([ 'type' => 'text', 'name' => 'phone', 'required' => true, 'label' => 'Phone', 'value' => $org->phone, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_select([ 'type' => 'text', 'name' => 'district_id', 'id' => 'dist', 'required' => true, 'label' => 'Select District', 'options' => $districts, 'value' => $org->district_id, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_input([ 'type' => 'text', 'name' => 'address_details', 'required' => true, 'label' => 'Address Details', 'value' => $org->address_details, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_input([ 'type' => 'email', 'name' => 'email', 'required' => true, 'label' => 'Email', 'value' => $org->email, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_select([ 'label' => 'Select Employee Size', 'name' => 'employee_size', 'required' => true, 'options' => config('dropdown.employee_size'), 'value' => $org->employee_size, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_select([ 'label' => 'Select Organization Type', 'name' => 'type', 'options' => config('dropdown.organization_types'), 'value' => $org->type, 'required' => true, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_select([ 'label' => 'Select Industry Type', 'name' => 'industry_type_id', 'options' => $industry_type_helper->dropdown(), 'value' => $org->industry_type_id, 'required' => true, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_input([ 'type' => 'text', 'name' => 'vat_number', 'required' => true, 'label' => 'VAT/PAN', 'value' => $org->vat_number, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_input([ 'type' => 'text', 'name' => 'business_regd_no', 'label' => 'Registration Number', 'value' => $org->business_regd_no, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_input([ 'type' => 'text', 'name' => 'contact_person_name', 'label' => 'Contact Person Name', 'value' => $org->contact_person_name, 'required' => true, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_input([ 'type' => 'text', 'name' => 'contact_person_phone', 'label' => 'Contact Person Phone', 'value' => $org->contact_person_phone, 'required' => true, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_input([ 'type' => 'text', 'name' => 'contact_person_email', 'label' => 'Contact Person Email', 'value' => $org->contact_person_email, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_input([ 'label' => 'Organization Established On', 'type' => 'text', 'name' => 'org_working_since', 'placeholder' => 'eg; 1997 AD', 'value' => $org->org_working_since, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_input([ 'label' => 'Organization Website', 'type' => 'text', 'name' => 'website', 'placeholder' => 'Website URL', 'value' => $org->website, 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', ]) }}
{{ ym_textarea([ 'label' => 'About Organization', 'name' => 'about_organization', 'value' => $org->about_organization, 'placeholder' => 'Write about your organization', 'class' => 'w-full rounded border border-stroke bg-gray py-3 pl-3 pr-4.5 font-medium text-black focus:border-primary focus-visible:outline-none dark:border-strokedark dark:bg-meta-4 dark:text-white dark:focus:border-primary', 'attributes' => [ 'rows' => 6, ], ]) }}

More Information

@csrf

Organization Banner [Prefred size 400px X 120px]

Current file
@endsection