@include('livewire.gig.gig-creation-sidebar')

{{ __('gig.pricing_desc')}}

@if(count($gig_plans) < 3)
{{ __('gig.add_new')}}
@endif @foreach($gig_plans as $key => $single)
{{ empty($single['plan_title']) ? __('gig.plan_title') : $single['plan_title'] }}
@if($errors->has('gig_plans.'.$key.'.plan_title'))
{{ $errors->first('gig_plans.'.$key.'.plan_title') }}
@endif
@if($errors->has('gig_plans.'.$key.'.plan_price'))
{{ $errors->first('gig_plans.'.$key.'.plan_price') }}
@endif
@if($errors->has('gig_plans.'.$key.'.plan_delivery_time'))
{{ $errors->first('gig_plans.'.$key.'.plan_delivery_time') }}
@endif
@if($errors->has('gig_plans.'.$key.'.plan_description'))
{{ $errors->first('gig_plans.'.$key.'.plan_description') }}
@endif
@if( count($gig_plans) > 1 ) @endif
@endforeach

{{ __('gig.add_gig_addon')}}

{{ __('gig.add_new')}}
@if( !empty($gig_addons) ) @foreach($gig_addons as $key=> $single)
{{ $single['title'] }}
{{ !empty($single['price']) ? getPriceFormat($currency_symbol, $single['price'] ) : '' }}
@if($errors->has('gig_addons.'.$key.'.title'))
{{ $errors->first('gig_addons.'.$key.'.title') }}
@endif
@if($errors->has('gig_addons.'.$key.'.price'))
{{ $errors->first('gig_addons.'.$key.'.price') }}
@endif
@endforeach @endif