@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 {{-- Hidden input --}}
{{-- Show validation message --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include('saas::company._company.progress_bar')
@include('saas::company._company.company_info') @include('saas::company._company.user_info')
{{-- Payment details --}} @include('saas::company._company.payment_details')
@else @include('saas::company.plans', ['data' => $data]) @endif @endsection @section('script') @if (old('payment_gateway') == 'Offline Payment') @elseif (old('payment_gateway') == 'Stripe') @endif {{-- Multi form related js --}} @endsection