@extends('layouts.app') @section('site_title', formatTitle([__('Invoicing'), __('Settings'), config('settings.title')])) @section('content')
@include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Settings')], ]])

{{ __('Invoicing') }}

{{ __('Invoicing') }}
@include('shared.message')
@csrf
@if ($errors->has('invoicing')) {{ $errors->first('invoicing') }} @endif {{ __('Automatically generate invoices on the website, and email users upon payment completion.') }} {{ __('When disabled, invoices must be managed manually or through the payment processor.') }}
@if ($errors->has('invoice_prefix')) {{ $errors->first('invoice_prefix') }} @endif {{ __('Invoice number prefix for the website generated invoices.') }} {!! __('For example :example will show on invoice as :result.', ['example' => 'PREFIX-', 'result' => 'PREFIX-1']) !!}
{{ __('Billing information') }}

@if ($errors->has('billing_vendor')) {{ $errors->first('billing_vendor') }} @endif
@if ($errors->has('billing_address')) {{ $errors->first('billing_address') }} @endif
@if ($errors->has('billing_city')) {{ $errors->first('billing_city') }} @endif
@if ($errors->has('billing_state')) {{ $errors->first('billing_state') }} @endif
@if ($errors->has('billing_postal_code')) {{ $errors->first('billing_postal_code') }} @endif
@if ($errors->has('billing_country')) {{ $errors->first('billing_country') }} @endif
@if ($errors->has('billing_phone')) {{ $errors->first('billing_phone') }} @endif
@if ($errors->has('billing_vat_number')) {{ $errors->first('billing_vat_number') }} @endif
@endsection @include('shared.sidebars.admin')