@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Setup Invoice Settings') }}

@csrf
{{ __('Invoice Currency') }}
{{ __('Invoice Language') }}
{{ __('Company Name') }}
@error('invoice_vendor')

{{ $errors->first('invoice_vendor') }}

@enderror
{{ __('Company Website') }}
@error('invoice_vendor_website')

{{ $errors->first('invoice_vendor_website') }}

@enderror
{{ __('Business Address') }}
@error('invoice_address')

{{ $errors->first('invoice_address') }}

@enderror
{{ __('City') }}
@error('invoice_city')

{{ $errors->first('invoice_city') }}

@enderror
{{ __('State') }}
@error('invoice_state')

{{ $errors->first('invoice_state') }}

@enderror
{{ __('Postal Code') }}
@error('invoice_postal_code')

{{ $errors->first('invoice_postal_code') }}

@enderror
{{ __('Country') }}
{{ __('Phone Number') }}
@error('invoice_phone')

{{ $errors->first('invoice_phone') }}

@enderror
{{ __('VAT Number') }}
@error('invoice_vat_number')

{{ $errors->first('invoice_vat_number') }}

@enderror
{{ __('Cancel') }}
@endsection @section('js') @endsection