@extends('layouts/pos_layout') @section('title', '| Add Installment Package') @section('content')
Add Installment Package
{!! Form::open(['url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!}
{!! Form::label('Package Method', 'Package Method:*', ['class' => 'col-sm-2 control-label'],false) !!}
{!! Form::select('method_id', $installmentPackageMethod, null, [ 'class' => 'form-control', 'id' => 'method_id', 'placeholder' => 'Select Type', ]) !!}

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

{!! Form::label('brand_id', 'Brands:', ['class' => 'col-sm-2 control-label'],false) !!}

{!! Form::label('group_id', 'Groups:', ['class' => 'col-sm-2 control-label'],false) !!}

{!! Form::label('category_id', 'Categories:', ['class' => 'col-sm-2 control-label'],false) !!}

{!! Form::label('sub_category_id', 'Sub Categories:', ['class' => 'col-sm-2 control-label'],false) !!}

{!! Form::label('model_id', 'Models:', ['class' => 'col-sm-2 control-label'],false) !!}

{!! Form::label('product_id', 'Products:', ['class' => 'col-sm-2 control-label'],false) !!}

{!! Form::label('down_payment_percentage', 'Down Payment(%):', ['class' => 'col-sm-2 control-label'],false) !!}
{!! Form::text('down_payment_percentage', $value = null, [ 'class' => 'form-control', 'id' => 'down_payment_percentage', 'type' => 'text', 'placeholder' => 'Enter Down Payment (%)', ]) !!}

{!! Form::label('security_money_percentage', 'Security Money(%):', ['class' => 'col-sm-2 control-label'],false) !!}
{!! Form::text('security_money_percentage', $value = null, [ 'class' => 'form-control', 'id' => 'security_money_percentage', 'type' => 'number', 'placeholder' => 'Enter Security Money (%)', ]) !!}

{!! Form::label('category_product_id', 'Config Item *', ['class' => 'col-sm-2 control-label config-item'],false) !!}
@php $i=0; @endphp
Month Installment Type Profit Action
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection {{-- Filtering --}}