@section('script')
@endsection
{{--
{{ __('Plan name') }}:
{!! Form::text('title', null, array('placeholder' => 'Title','class' => 'form-control')) !!}
{{ __('Description') }}:
{!! Form::text('description', null, array('placeholder' => 'Plan description','class' => 'form-control')) !!}
{{ __('Plan type') }}:
{!! Form::select('type', ['free' => 'Free', 'paid' => 'Paid'], null, array('class' => 'form-control')) !!}
{{ __('Plan price') }}:
{!! Form::text('amount', null, array('placeholder' => 'Plan price','class' => 'form-control')) !!}
{{ __('Plan duration') }}:
{!! Form::text('duration', null, array('placeholder' => 'Plan duration','class' => 'form-control')) !!}
{{ --
{{ __('Stripe plan ID') }}:
{!! Form::text('plan_id', null, array('placeholder' => 'Stripe plan ID','class' => 'form-control')) !!}
{{ __('Stripe price ID') }}:
{!! Form::text('price_id', null, array('placeholder' => 'Stripe price ID','class' => 'form-control')) !!}
-- }}
{{ __('Plan services') }}:
{!! Form::select('services[]', $services->pluck('name', 'id')->toArray(), null, array('class' => 'form-control', 'multiple')) !!}
--}}