@extends('layouts/microfin_layout') @section('title', '| Add Opening Savings Adjustment') @section('content') @php use \App\Traits\CreateForm as createForm; @endphp
Opening Savings Adjustment
{!! Form::open(array('url' => '', 'role' => 'forl', 'id' => 'branchOpeningInfoForm', 'class' => 'form-horizontal form-groups')) !!}
{!! Form::hidden('edit_id',@$openingData->id) !!} @if ($userBranchId==1) {!! createForm::select('branch', $branchList,@$openingData->branchIdFk,'Branch:',['id'=>'branch']) !!} @endif {!! createForm::select('primaryProduct', $primaryProductList,@$openingData->productIdFk,'Loan Product:',['id'=>'primaryProduct']) !!} {!! createForm::select('savingsProduct', $savingsProductList,@$openingData->savingProductIdFk,'Savings Product:',['id'=>'savingsProduct']) !!} {!! createForm::select('gender',$genderList, @$openingData->genderTypeId,'Gender:') !!} {!! createForm::text('cumCollection',@$openingData->cumCollection, 'Collection (Cumulative):', ['id'=>'cumCollection']) !!} {!! createForm::text('cumInterestProvision',@$openingData->cumInterestProvision,'Interest Provision (Cumulative):', ['id'=>'cumInterestProvision']) !!} {!! createForm::text('cumWithdraw',@$openingData->cumWithdraw,'Refund (Cumulative):', ['id'=>'cumWithdraw']) !!}
{!! Form::close() !!}
@endsection