@extends('layouts/pos_layout') @section('title', '| Edit Installment Package Method') @section('content')
Edit Installment Package Method
{!! Form::open(['url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!} /home/shikkhaplus/public_html/guk_bk/resources/views/pos/productConfig/installmentPackageMethod/edit.blade.php on line 22
" />
{!! Form::label('name', 'Package Method Name:*', ['class' => 'col-sm-2 control-label'],false) !!}
{!! Form::text('name', $value = $datas->name, [ 'class' => 'form-control', 'id' => 'name', 'type' => 'text', 'placeholder' => 'Enter Name' ]) !!}

{!! Form::label('slug', 'Package Method Slug:*', ['class' => 'col-sm-2 control-label'],false) !!}
{!! Form::text('slug', $value = $datas->slug, [ 'class' => 'form-control', 'id' => 'slug', 'type' => 'text', 'placeholder' => 'Enter Effect From', 'readonly' => true, ]) !!}

Down Payment Config
{{-- Is Cash Sale --}}
{!! Form::radio('isTakeDownPayment', 'true', ($configDetails->isTakeDownPayment == 'true'), ['class' => 'form-check-input', 'id' => 'isTakeDownPayment_yes']) !!} {!! Form::label('isTakeDownPayment_yes', 'Yes', ['class' => 'form-check-label']) !!}
{!! Form::radio('isTakeDownPayment', 'false', ($configDetails->isTakeDownPayment == 'false'), ['class' => 'form-check-input', 'id' => 'isTakeDownPayment_no']) !!} {!! Form::label('isTakeDownPayment_no', 'No', ['class' => 'form-check-label']) !!}

{!! Form::radio('isCountAsFirstInstallment', 'true', ($configDetails->isCountAsFirstInstallment == 'true'), ['class' => 'form-check-input', 'id' => 'isCountAsFirstInstallment_yes']) !!} {!! Form::label('isCountAsFirstInstallment_yes', 'Yes', ['class' => 'form-check-label']) !!}
{!! Form::radio('isCountAsFirstInstallment', 'false', ($configDetails->isCountAsFirstInstallment == 'false'), ['class' => 'form-check-input', 'id' => 'isCountAsFirstInstallment_no']) !!} {!! Form::label('isCountAsFirstInstallment_no', 'No', ['class' => 'form-check-label']) !!}

{!! Form::radio('downPaymentType', 'manualType', ($configDetails->downPaymentType == 'manualType'), ['class' => 'form-check-input', 'id' => 'downPaymentType_manualType']) !!} {!! Form::label('downPaymentType_manualType', 'Manual', ['class' => 'form-check-label']) !!}
{!! Form::radio('downPaymentType', 'percentageType', ($configDetails->downPaymentType == 'percentageType'), ['class' => 'form-check-input', 'id' => 'downPaymentType_percentageType']) !!} {!! Form::label('downPaymentType_percentageType', 'Percentage', ['class' => 'form-check-label']) !!}

Security Money Config
{{-- Is Cash Sale --}}
{!! Form::radio('isTakeSecurityMoney', 'true', ($configDetails->isTakeSecurityMoney == 'true'), ['class' => 'form-check-input', 'id' => 'isTakeSecurityMoney_yes']) !!} {!! Form::label('isTakeSecurityMoney_yes', 'Yes', ['class' => 'form-check-label']) !!}
{!! Form::radio('isTakeSecurityMoney', 'false', ($configDetails->isTakeSecurityMoney == 'false'), ['class' => 'form-check-input', 'id' => 'isTakeSecurityMoney_no']) !!} {!! Form::label('isTakeSecurityMoney_no', 'No', ['class' => 'form-check-label']) !!}

{!! Form::radio('securityMoneyType', 'manualType', ($configDetails->securityMoneyType == 'manualType'), ['class' => 'form-check-input', 'id' => 'securityMoneyType_manualType']) !!} {!! Form::label('securityMoneyType_manualType', 'Manual', ['class' => 'form-check-label']) !!}
{!! Form::radio('securityMoneyType', 'percentageType', ($configDetails->securityMoneyType == 'percentageType'), ['class' => 'form-check-input', 'id' => 'securityMoneyType_percentageType']) !!} {!! Form::label('securityMoneyType_percentageType', 'Percentage', ['class' => 'form-check-label']) !!}

{!! Form::label('Status', 'Status:*', ['class' => 'col-sm-2 control-label'],false) !!}
{!! Form::select('status', $installmentStatus, $datas->status, [ 'class' => 'form-control', 'id' => 'status', 'placeholder' => 'Select Type', ]) !!}

{!! Form::submit('Update', ['id' => 'add', 'class' => 'btn btn-primary px-4 me-2']) !!} Close
{!! Form::close() !!}
@endsection