@extends('admin.layouts.master-soyuz') @section('title', __('Invoice Design | ')) @section('body') @component('admin.component.breadcumb', ['secondaryactive' => 'active']) @slot('heading'){{ __('Invoice Design') }}@endslot @slot('menu1'){{ __('Invoice Design') }}@endslot @endcomponent
@if ($errors->any()) @endif @if(session('success')) @endif
@csrf
{{-- LEFT COLUMN: form --}}
{{-- Display Options --}}
{{ __('Display Options') }}
{{ __('Choose what to show on the invoice') }}
@foreach([ ['name' => 'show_logo', 'label' => __('Logo'), 'desc' => __('Display your store logo at the top'), 'icon' => 'image'], ['name' => 'show_qr', 'label' => __('QR Code'), 'desc' => __('Print a scannable QR for the order'), 'icon' => 'maximize'], ['name' => 'show_vat', 'label' => __('VAT Number'), 'desc' => __('Show VAT / Tax registration number'), 'icon' => 'percent'], ] as $opt)
@endforeach
{{-- Layout --}}
{{ __('Layout & Style') }}
{{ __('px') }}
{{ __('Corner roundness for invoice card') }}
@foreach(['portrait' => 'icon-square', 'landscape' => 'icon-tablet'] as $mode => $icon) @endforeach
{{-- RIGHT COLUMN: live preview --}}
{{ __('Live Preview') }}
INVOICE
#INV-00123
06-04-2026
VAT: GB123456789
Bill to: John Doe
123 Sample Street
Item Total
Sample product$ 49.00
Total$ 49.00

{{ __('Preview reflects unsaved changes.') }}

@endsection @section('custom-script') @endsection