@extends('layouts/pos_layout') @section('title', '| Add Installment Package') @section('content')
Installment Package
{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('month', 'Month/Week:*', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('month', $value = null, ['class' => 'form-control', 'id' => 'month', 'type' => 'text', 'placeholder' => 'Enter Month/Week']) !!}

{!! Form::label('Installment Type', 'Installment Type:*', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('installment_type', $installmentType, null, [ 'class' => 'form-control', 'id' => 'installment_type', 'placeholder' => 'Select Type', ]) !!}

{!! Form::label('profit', 'Profit:*', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('profit', $value = null, ['class' => 'form-control', 'id' => 'profit', 'type' => 'text', 'placeholder' => 'Enter Profit %']) !!}

{!! Form::label('submit', ' ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']); !!} Close
{!! Form::close() !!}
@endsection