@extends('layouts.app') @php($editing=isset($company)) @section('title',$editing?'Edit Corporate Client':'Add Corporate Client') @section('content')

Corporate master

{{ $editing?'Edit '.$company->name_en:'Register corporate client' }}

Legal, licensing, immigration, tax, contact and commercial account information.

Cancel
@csrf @if($editing)@method('PUT')@endif @if($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif @php($fields=[ ['Company name (English) *','name_en','text',true],['Company name (Arabic)','name_ar','text'],['Legal name','legal_name','text'],['Trade name','trade_name','text'],['Business type','business_type','text'],['Company type','company_type','text'],['Industry','industry','text'],['Main sponsor / owner','main_sponsor_owner','text']])

1. Company identity

Legal and commercial naming.

@foreach($fields as $f)@endforeach

2. Trade license and tax

Duplicate license numbers require explicit acknowledgement.

@foreach([['Trade license number','trade_license_number','text'],['License issue','trade_license_issue','date'],['License expiry','trade_license_expiry','date'],['Licensing authority','licensing_authority','text'],['TRN','trn','text']] as $f)@endforeach

3. Establishment and immigration

Government establishment references and validity dates.

@foreach([ ['Establishment number','establishment_number','text'],['Establishment card number','establishment_card_number','text'],['Establishment card issue','establishment_card_issue','date'],['Establishment card expiry','establishment_card_expiry','date'],['Immigration card number','immigration_card_number','text'],['Immigration file number','immigration_file_number','text'],['Immigration card issue','immigration_card_issue','date'],['Immigration expiry','immigration_expiry','date'],['MOHRE establishment number','mohre_establishment_number','text'],['Labour establishment number','labour_establishment_number','text'] ] as $f)@endforeach

4. Contact and address

Company-level channels; authorized people are managed on Company 360.

@foreach([['Email','email','email'],['Website','website','url'],['Phone','phone','text'],['Mobile','mobile','text'],['WhatsApp','whatsapp','text'],['Emirate','emirate','text'],['Area','area','text'],['PO Box','po_box','text'],['Address','address','text']] as $f)@endforeach

5. Commercial ownership

Account manager, credit exposure and lifecycle status.

@endsection