{{ __('Company Settings') }}

Manage your company profile, lead categories, project overview, and users in one place.

@php $isCompanyAdmin = auth()->user()?->isCompanyAdmin(); @endphp
@if(session('success'))
{{ session('success') }}
@endif

Company Details

@csrf
{{--
--}}
Save Company Details

Current Company Profile

Company
{{ $company?->name ?? 'N/A' }}
Email
{{ $company?->email ?: 'N/A' }}
Phone
{{ $company?->phone_number ?: 'N/A' }}
GST Number
{{ $company?->gst_number ?: 'N/A' }}
PAN Number
{{ $company?->pan_number ?: 'N/A' }}
Registration No.
{{ $company?->registration_number ?: 'N/A' }}
Registration Date
{{ $company?->registration_date ? $company->registration_date->format('d M Y') : 'N/A' }}
Address
{{ $company?->address ?: 'N/A' }}

CRM Settings

Manage lead categories, lead source master list, and quotation numbering.

{{-- @if($isCompanyAdmin) Add Category @endif --}}
{{--

Lead Source Master List

Add one source per line. These values appear in the lead form source list.

@csrf
Save Lead Sources
--}}

Quotation Numbering

Configure the quotation prefix and starting sequence.

@csrf
Save Quotation Numbering
@if($isCompanyAdmin)

Add New Lead Category

Create custom categories to organize your leads.

@csrf
{{ __('Add Category') }}
@endif

Your Lead Categories

This list includes global categories and company categories.

@if($isCompanyAdmin) @endif @forelse($categories as $category) @if($isCompanyAdmin) @endif @empty @endforelse
NameActions
{{ $category->name }} @if($category->company_id)
@csrf @method('DELETE')
@else - @endif
No categories found.

Payroll Settings

Working days per week, PF toggle, and holiday calendar management.

Working Days Per Week

Choose the working schedule used in bulk attendance.

@csrf @php $selectedWorkingDays = old('working_days', $company?->working_days ?? ['mon','tue','wed','thu','fri','sat']); if (!is_array($selectedWorkingDays)) { $selectedWorkingDays = ['mon','tue','wed','thu','fri','sat']; } $dayOptions = ['mon' => 'Mon', 'tue' => 'Tue', 'wed' => 'Wed', 'thu' => 'Thu', 'fri' => 'Fri', 'sat' => 'Sat', 'sun' => 'Sun']; @endphp
@foreach($dayOptions as $key => $label) @endforeach
PF Enabled
Toggle provident fund for payroll calculations.
pf_enabled)) class="h-5 w-5 rounded border-slate-300 text-indigo-600 focus:ring-indigo-500">
Save Payroll Settings

Holiday Calendar

Add, edit, or delete holidays in a popup form.

@forelse($holidays as $holiday) @empty @endforelse
Date Title Actions
{{ $holiday->holiday_date->format('d M Y') }} {{ $holiday->title }}
@csrf @method('DELETE')
No holidays added yet.

Email Settings

Configure company mail credentials and default sender/recipient details.

@csrf
Save Email Settings

Project Settings

Configure project reference and delivery challan numbering.

Project Reference Format

Prefix + year + sequence, for example PRJ-2026-0001.

@csrf
Save Project Format

Delivery Challan Numbering

Configure the challan prefix and starting sequence.

@csrf
Save Challan Numbering
@push('scripts') @endpush @if($isCompanyAdmin) @endif