@extends('admin.layouts.dashboard') @section('title', 'Invoice Settings') @push('head') {{-- Google Places Autocomplete --}} @endpush @section('content')

Invoice Settings

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@endif
@csrf @method('PUT')
{{-- ── Business Info ── --}}
Business Information
{{-- ── Tax Registrations ── --}}

Tax Registrations
{{-- GST --}}
gst_registered ? 'yes' : 'no') === 'yes' ? 'checked' : '' }}>
gst_registered ? 'yes' : 'no') === 'no' ? 'checked' : '' }}>
{{-- PST --}}
pst_registered ? 'yes' : 'no') === 'yes' ? 'checked' : '' }}>
pst_registered ? 'yes' : 'no') === 'no' ? 'checked' : '' }}>
{{-- HST --}}
hst_registered ? 'yes' : 'no') === 'yes' ? 'checked' : '' }}>
hst_registered ? 'yes' : 'no') === 'no' ? 'checked' : '' }}>
{{-- ── Address (Google Places) ── --}}

Business Address
Start typing and select from suggestions — fields below will auto-fill.
{{-- ── Logo ── --}}

Logo
{{-- Preview for newly selected file --}}
New logo preview: Logo Preview
{{-- Current logo --}} @if($setting->logo_path)
Current logo: Current Logo
@else No logo uploaded. Default logo will be used. @endif
{{-- ── Terms & Conditions ── --}}

Terms & Conditions
These will appear on all invoices by default.
@endsection @push('scripts') {{-- CKEditor for Terms & Conditions --}} @endpush