@extends('layouts.main') @section('title') {{ __('Advertisement Listing Packages') }} @endsection @section('page-title')

@yield('title')

@endsection @section('content')
@can('advertisement-listing-package-create')
{!! Form::open(['route' => 'package.store', 'data-parsley-validate', 'files' => true,'class'=>'create-form', 'data-pre-success-function'=>'preSuccessFunction']) !!}
{{ Form::label('name', __('Name'), ['class' => 'form-label col-12 ']) }} {{ Form::text('name', '', [ 'class' => 'form-control ', 'placeholder' => __("Package Name"), 'data-parsley-required' => 'true', 'id' => 'name', ]) }}
{{ Form::label('ios_product_id', __('IOS Product ID'), ['class' => 'form-label col-12 ']) }} {{ Form::text('ios_product_id', '', [ 'class' => 'form-control ', 'placeholder' => __("IOS Product ID"), 'id' => 'ios_product_id', ]) }}
{{ Form::label('price', __('Price') . ' (' . $currency_symbol . ')', [ 'class' => 'form-label col-12 ', ]) }} {{ Form::number('price', 0, [ 'class' => 'form-control ', 'placeholder' => __('Package Price'), 'data-parsley-required' => 'true', 'id' => 'price', 'min' => '0', 'step'=>0.01, 'data-parsley-field-name'=>'price', ]) }}
{{ Form::label('discount_in_percentage', __('Discount') . ' (%)', [ 'class' => 'form-label col-12 ', ]) }} {{ Form::number('discount_in_percentage', 0, [ 'class' => 'form-control ', 'placeholder' => __('Package Price'), 'data-parsley-required' => 'true', 'id' => 'discount_in_percentage', 'min' => '0', 'max'=>'100', 'step'=>0.01, 'data-parsley-field-name'=>'price', ]) }}
{{ Form::label('price', __('Final Price') . ' (' . $currency_symbol . ')', [ 'class' => 'form-label col-12' , ]) }} {{ Form::number('final_price', 0, [ 'class' => 'form-control ', 'placeholder' => __('Stripped Price'), 'data-parsley-required' => 'true', 'id' => 'final_price', 'min' => '0', 'step'=>0.01 ]) }}
{{ Form::label('days', __('Days'), ['class' => 'form-label col-12 ']) }}
{{ Form::label('items', __('Advertisements'), ['class' => 'form-label col-12 ']) }}
{{ Form::submit(__('Add Package'), ['class' => 'center btn btn-primary', 'style' => 'width:200']) }}
{!! Form::close() !!}
@endcan
{{--
--}}
@can('advertisement-listing-package-update') @endcan
{{ __('ID') }} {{ __('Image') }} {{ __('Name') }} {{ __('Days') }} {{ __('Advertisement Limit') }} {{ __('Price') }} {{ __('Discount in(%)') }} {{ __('Final Price') }} {{ __('Description') }} {{ __('IOS Product ID') }}{{ __('Status') }} {{ __('Action') }}
@can('advertisement-listing-package-update') @endcan
@endsection @section('js') @endsection