@extends('adminlte::page')
@section('title', 'Change Plan')
@section('content')
<div class="wizard row">
    <div class="col-md-12 pd-4">
      <div class="box ">
        <!-- title of the page and heading-->
        <div class="box-header with-border main-box">
          <i class="ion ion-clipboard"></i>
          <h3 class="box-title">Change Plan</h3>
        </div> 
        <!--end title-->
        <!-- start body of the page--> 
        <!-- start box body --> 
        <div class="box-body">
          <div class="col-12">
            <form id="payment-form" action="#" method="POST">
              {!! csrf_field() !!}
              <div class="form-group ">
                  <div class="col-12">
                      <span style="font-size: 18px;">
                          @php
                            $pname = $plan_name_new;
                          @endphp
                          @foreach($slugname_arr as $slugname)
                              @if($pname==$slugname)
                                  @php
                                      $invoice_plan_name = $display_name_arr[$slugname];
                                  @endphp
                              @endif
                          @endforeach
                          You Have Changed the Plan to {{$invoice_plan_name}}
                      </span>
                  </div>
              </div>
              <div class="form-group">
                  <div class="col-6">
                   
                  </div>
              </div>
            </form>
          </div>
        </div>
      </div>
    </div>
</div>
@endsection 