@extends('layouts.app') @section('content')

{{ __('billing.title') }} - {{ Lang::has('billing.plans_names.' . $plan->slug) ? __('billing.plans_names.' . $plan->slug) : $plan->name }}

{{ __('billing.step_1_title') }} {{ __('billing.step_1_subtitle') }}

@if ($errors->any())

{{ __('validation.custom.error_title') ?? 'Lütfen aşağıdaki alanları kontrol ediniz:' }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
billing_type ?? 'individual') === 'individual' ? 'checked' : '' }}/>
billing_type) === 'corporate' ? 'checked' : '' }}/>
{{ __('billing.cancel') }}

{{ __('billing.order_summary') }}

{{ Lang::has('billing.plans_names.' . $plan->slug) ? __('billing.plans_names.' . $plan->slug) : $plan->name }} {{ $plan->billing_interval === 'month' ? __('billing.monthly') : __('billing.yearly') }}
@money($plan->price)
@php $subtotal = $plan->price / 1.20; $vat = $plan->price - $subtotal; @endphp
{{ __('billing.subtotal') }}: @money($subtotal)
{{ __('billing.vat') }}: @money($vat)
{{ __('billing.total') }}: @money($plan->price)
@endsection @push('scripts') @endpush