@extends('layouts.admin.app') @section('title', translate('Update Package') ) @push('css_or_js') @endpush @section('content')
@csrf
{{translate('General Information')}}
{{translate('Select Features')}}
pos == 1 ? 'checked' : '' }} id="pos_system">
self_delivery == 1 ? 'checked' : '' }} id="self_delivery">
mobile_app == 1 ? 'checked' : '' }} id="mobile_app">
review == 1 ? 'checked' : '' }} id="review">
chat == 1 ? 'checked' : '' }} id="chat">

{{translate('Set Limit')}}
{{--
--}}
max_order == 'unlimited') ? 'checked' : '' }} value="option1">
 
max_order != 'unlimited') ? 'checked' : '' }} value="option2">
max_order == 'unlimited') ? 'hidden' : '' }} value="{{ ($package->max_order != 'unlimited') ? $package->max_order : null }}" min="1" step="1" id="max_o" class="form-control" placeholder="{{ translate('messages.Ex :') }} 1000 ">
max_product == 'unlimited') ? 'checked' : '' }} >
 
max_product != 'unlimited') ? 'checked' : '' }}>
max_product == 'unlimited') ? 'hidden' : '' }} name="max_product" min="1" step="1" class="form-control" id="max_p" value="{{ ($package->max_product != 'unlimited') ? $package->max_product : null }}" placeholder="{{ translate('messages.Ex :') }} 1000 ">
@endsection @push('script_2') @endpush