@extends('layouts.main') @section('title', 'Settings') @section('content')

Settings

Manage your company information and preferences

@if(session('success'))
{{ session('success') }}
@endif

Company Information

@csrf
@if($settings && $settings->company_logo)
Logo
@endif

Document Settings

@csrf

Tax Rates

Add New Tax Rate

@csrf

Existing Tax Rates

@if($taxRates->count() > 0)
@foreach($taxRates as $taxRate)
{{ $taxRate->name }} ({{ number_format($taxRate->rate, 2) }}%) @if(!$taxRate->is_active) Inactive @endif
@csrf
@csrf @method('DELETE')
@endforeach
@else

No tax rates configured

@endif
@endsection