@extends('layouts.admin') @section('title',__('adminstaticwords.EditPackage')) @section('content')

@can('package.view') reply @endcan {{__('adminstaticwords.EditPackage')}}

{!! Form::model($package, ['method' => 'PATCH', 'action' => ['PackageController@update', $package->id]]) !!}
{!! Form::label('plan_id', __('adminstaticwords.PlanID')) !!}

- {{__('adminstaticwords.UniquePackage')}}

{!! Form::text('plan_id', null, ['class' => 'form-control', 'required' => 'required', 'data-toggle' => 'popover','data-content' => 'Create Your Unique Plan ID ex. basic10', 'data-placement' => 'bottom']) !!} {{ $errors->first('plan_id') }}
{!! Form::label('name', __('adminstaticwords.PlanName')) !!}

- {{__('adminstaticwords.PleaseEnterYourPlanName')}}

{!! Form::text('name', null, ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('name') }}
{!! Form::hidden('currency', $currency_code) !!}
{!! Form::label('free', __('adminstaticwords.Free')) !!}
{{ $errors->first('free') }}
{!! Form::label('amount', __('adminstaticwords.YourPlanAmount')) !!}

-{{__('adminstaticwords.PlanAmountMinMax')}}

{!! Form::number('amount', null, ['class' => 'form-control']) !!}
@if($package->currency_symbol=='') @else @endif {{ $errors->first('amount') }}
{!! Form::label('feature', __('adminstaticwords.PackageFeature')) !!}*

- {{__('adminstaticwords.PackageFeatureNotes')}}

{{ $errors->first('feature') }}
{!! Form::label('screens', __('adminstaticwords.Screens')) !!}

- {{__('adminstaticwords.ScreensDescription')}}

{!! Form::number('screens', null, ['class' => 'form-control', 'min' => '1', 'max' => '4']) !!} {{ $errors->first('screens') }}
{!! Form::label('download', __('adminstaticwords.DoYouWantDownloadLimit')) !!}
{{ $errors->first('download') }}
{{ $errors->first('downloadlimit') }}
{!! Form::label('downloadlimit', __('adminstaticwords.DownloadLimit')) !!}

- {{__('adminstaticwords.DoYouWantDownloadLimitDescription')}}

{!! Form::number('downloadlimit', null, ['class' => 'form-control']) !!} {{__('adminstaticwords.Note')}} :-
1. {{__('adminstaticwords.DownloadNote')}}.
2. {{__('adminstaticwords.DownloadlimitNote')}}
@php $webconfig = App\Button::first(); @endphp @if($webconfig->remove_ads == 1)
{!! Form::label('ads_in_web', __('Do you want Remove Ads in Web')) !!}
{{ $errors->first('ads_in_web') }}
@endif @php $appconfig = App\AppConfig::first(); @endphp @if($appconfig->remove_ads == 1)
{!! Form::label('ads_in_app', __('Do you want Remove Ads in App')) !!}
{{ $errors->first('ads_in_app') }}
@endif
{!! Form::label('status',__('adminstaticwords.Status')) !!}*

- {{__('Please select status')}}

{{ $errors->first('status') }}
{!! Form::close() !!}
@endsection @section('custom-script') @endsection