@extends('layouts.admin') @section('content')
@csrf
@if(empty($listing->id))
{{__('Leave empty if you don\'t want to change it')}}
@endif
{{old('about') ?? ($listing->about ?? null)}}
@if(isset($listing->id))
{{__('Plan')}} @if($listing->plan_id) {{$listing->plan->name}} @else {{__('Free trial')}} @endif
@if($listing->plan_amount)
{{__('Amount')}} {{money_format($listing->plan_amount,$listing->plan_currency)}}
{{__('Payment method')}} {{$listing->plan_payment_method}}
@endif
@endif
@foreach($plans as $plan) @endforeach
@if(isset($listing->id))
@foreach(config('countries') as $key => $value) @endforeach

{{__('Leave empty if you don\'t want to change it')}}
@endif {{__('Save change')}}
@endsection