@extends('admin.preferences._layout') @php $extraOpen = $showExtraPanel || $company->bank_ad_code || $company->bank_swift; @endphp @section('preferences_content')
Profile

Your company details appear on invoices, quotes, and other documents.

@csrf @method('PUT') {{-- Logo --}}
@if($company->logo_path) Logo
@endif

This logo will appear on documents (invoices, quotes, etc.). Preferred image size: 240px × 240px at 72 DPI.


{{-- Company information (Sleek Bill field order) --}}
@error('name')
{{ $message }}
@enderror
tax_inclusive_rates))>
When ON, item rates on documents include tax.

{{-- Bank details (Sleek Bill order) --}}
Bank details
{{-- Extra registration / tax fields --}}

Optional tax and registration numbers for your documents.

@foreach($extraFields as $field) @php $key = $field['key']; $val = old("extra_fields.{$key}", $field['value']); @endphp @include('admin.preferences.partials.profile-labeled-field', [ 'label' => $field['label'], 'name' => "extra_fields[{$key}]", 'value' => $val, 'placeholder' => $field['placeholder'] ?? 'Enter value', 'maxlength' => $field['maxlength'] ?? null, 'inputId' => "extra_field_{$key}", ]) @endforeach
@endsection @push('scripts') @endpush