@extends('layouts.frontend') @section('title', trans('messages.subscription')) @section('page_script') @endsection @section('page_header')

{{ trans('messages.your_subscriptions') }}

@endsection @section('content') @include("account._menu")

{{ trans('messages.subscription') }}

{!! trans('messages.billing_information') !!}

{!! trans('messages.please_fill_billing_information', [ 'plan' => $subscription->plan_name, 'price' => Acelle\Library\Tool::format_price($subscription->price, $subscription->currency_format) ]) !!}

{{ csrf_field() }}
@include('helpers.form_control', [ 'type' => 'text', 'name' => 'tax_number', 'value' => (isset($billing_information['tax_number']) ? $billing_information['tax_number'] : ''), 'help_class' => 'billing_information', 'rules' => $rules, ]) @include('helpers.form_control', [ 'type' => 'text', 'name' => 'billing_address', 'value' => (isset($billing_information['billing_address']) ? $billing_information['billing_address'] : ''), 'help_class' => 'billing_information', 'rules' => $rules, ])

@endsection