@extends('user.layouts.app') @push('title') {{ __(@$pageTitle) }} @endpush @section('content')
@include('user.settings.sidebar')
@csrf

{{ __('Personal Information') }}

{{ __('Organization Details') }}

{{ __('Change Password') }}

{{ __('Checkout Page Settings') }}

  • {{ __('Header Settings') }}
  • {{ __('Basic Info') }}
  • {{ __('Billing Info') }}
  • {{ __('Shipping Info') }}
  • {{ __('Payment Info') }}
  • {{ __('Confirmation') }}
@csrf

{{ __('Header Settings') }}

{{ __('Drag & Drop Files Here') }}

@if ($checkoutPage) @endif
@csrf

{{ __('Basic Info') }}

@foreach (json_decode($checkoutPage?->basic_info) ?? [] as $basicInfo)
@endforeach
@csrf

{{ __('Billing Info') }}

@foreach (json_decode($checkoutPage?->billing_info) ?? [] as $billingInfo)
@endforeach
@csrf

{{ __('Shipping Info') }}

@foreach (json_decode($checkoutPage?->shipping_info) ?? [] as $shippingInfo)
@endforeach

{{ __('Shipping Method') }}

shipping_method == SHIPPING_METHOD_FREE ? 'checked' : '' }} />

{{ __('We deliver free to save you money') }}

shipping_method == SHIPPING_METHOD_PAID ? 'checked' : '' }} />

{{ __('We take your deliveries seriously.') }}

@csrf

{{ __('Payment Selection') }}

@foreach ($gateways as $key => $gateway)
id, json_decode($checkoutPage?->payment) ?? []) ? 'checked' : '' }} name="gateways[]" />
@endforeach
@csrf

{{ __('Details') }}

{{ __('Basic Info') }}

{{ __('First Name') }}:{{ __('Text') }}

{{ __('Last Name') }}:{{ __('Text') }}

{{ __('Email') }}:{{ __('Email') }}

{{ __('Phone') }}:{{ __('Text') }}

{{ __('Company') }}:{{ __('Text') }}

@foreach (json_decode($checkoutPage?->basic_info) ?? [] as $basicInfo)

{{ $basicInfo->label }} : {{ $basicInfo->type }}

@endforeach

{{ __('Billing Info') }}

{{ __('Address') }}:{{ __('Text') }}

{{ __('Zip Code') }}:{{ __('Text') }}

{{ __('City') }}:{{ __('Text') }}

{{ __('State') }}:{{ __('Text') }}

{{ __('Country') }}:{{ __('Text') }}

@foreach (json_decode($checkoutPage?->billing_info) ?? [] as $billingInfo)

{{ $billingInfo->label }} : {{ $billingInfo->type }}

@endforeach

{{ __('Shipping Address') }}

{{ __('First Name') }}:{{ __('Text') }}

{{ __('Last Name') }}:{{ __('Text') }}

{{ __('Email') }}:{{ __('Text') }}

{{ __('Phone') }}:{{ __('Text') }}

{{ __('Address') }}:{{ __('Text') }}

@foreach (json_decode($checkoutPage?->shipping_info) ?? [] as $shippingInfo)

{{ $shippingInfo->label }} : {{ $shippingInfo->type }}

@endforeach

{{ __('Shipping Method') }}

{{ $checkoutPage?->shipping_method == SHIPPING_METHOD_FREE ? __('Free') : __('Paid') }}

{{ __('Payment Gateway') }}

{{ __('Status') }}

{{ __('Email Template Settings') }}

    @foreach (emailTemplates() as $key => $template)
  • {{ __($template['title']) }}

    {{ __($template['details']) }}

  • @endforeach

{{ __('Webhook') }}


{{ __('Webhook Name') }}
{{ __('Webhook URL') }}
{{ __('Product') }}
{{ __('Plan') }}
{{ __('status') }}
{{ __('Action') }}
@csrf

{{ __('Drag & Drop Files Here') }}

@if ($invoiceSetting) @endif

{{ __('Title') }}

@foreach (invoiceSettingFields() as $field) {{ $field }} @endforeach

{{ __('Company Information') }}

{{ __('Prefix') }}

{{ __('Information One') }}

{{ __('Information Two') }}

{{ __('Information Three') }}

{{ __('Footer Text') }}

{{ __('Show Column') }}

@foreach (getTableColumn() as $key => $column)
column) ?? []) ? 'checked' : '' }} name="column[]">
@endforeach

{{ __('Tax Settings') }}


{{ __('Rule Name') }}
{{ __('Product') }}
{{ __('Plans') }}
{{ __('Tax Amount') }}
{{ __('Status') }}
{{ __('Action') }}
{{-- tax add modal start --}} {{-- tax add modal end --}} {{-- tax edit modal start --}} {{-- tax edit modal end --}} {{-- modal --}} @endsection @push('script') @endpush