@extends('backend.layouts.app') @section('title', @$data['title']) @section('style') @endsection @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!} @if (request()->filled('pricing_plan_price_id'))
@csrf

{{ _trans('common.General Info') }}

@if($errors->has('company_name'))
{{ $errors->first('company_name') }}
@endif
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('trade_licence_number'))
{{ $errors->first('trade_licence_number') }}
@endif
@if($errors->has('subdomain'))
{{ $errors->first('subdomain') }}
@endif
@if($errors->has('total_employee'))
{{ $errors->first('total_employee') }}
@endif
@if($errors->has('business_type'))
{{ $errors->first('business_type') }}
@endif
@if($errors->has('country_id'))
{{ $errors->first('country_id') }}
@endif
@if($errors->has('status_id'))
{{ $errors->first('status_id') }}
@endif

{{ @$data['pricingPlanPrice']->pricingPlan->name }} / {{ @$data['pricingPlanPrice']->planDurationType->name }}

@if (@$data['pricingPlanPrice']->pricingPlan->is_popular) {{ _trans('common.Most Popular') }} @endif

{{ _trans('common.Start Date') }}

{{ showDate($data['startDate']) }}

{{ _trans('common.End Date') }}

{{ showDate($data['endDate']) }}

{{ _trans('common.Total') }} {{ currency_format(number_format($data['pricingPlanPrice']->price, 2)) }}

{{ _trans('common.Payment') }}


@if (@base_settings('is_payment_type_cash') || @base_settings('is_payment_type_cheque') || @base_settings('is_payment_type_bank_transfer'))
@endif
@else @include('saas::company.plans', ['data' => $data]) @endif @endsection @section('script') @if (old('payment_gateway') == 'Offline Payment') @elseif (old('payment_gateway') == 'Stripe') @endif @endsection