@extends('layouts.admin', ['header' => true, 'nav' => true, 'demo' => true]) @section('content')
{{ __('Overview') }}
{{ __('Change Plan in User') }}
@csrf
{{ __('Change Plan') }}
{{ __('Plans') }}
{{ __('Plans') }}
@foreach ($plans as $plan)
plan_id == $user_details->plan_id ? 'selected' : '' }}> @if ($plan->plan_price == '0') {{ __($plan->plan_name) }} ({{ __('Free') }}) @else {{ __($plan->plan_name) }} ({{ $config[1]->config_value}} {{ $plan->plan_price }}) @endif
@endforeach
@include('admin.includes.footer')
@endsection