@extends('layouts/microfin_layout') @section('title', '| Add Savings Account') @section('content') @php use \App\Http\Controllers\microfin\savings\MfnSavingsDepositTypeController as createForm; @endphp
Opening Savings Information add
{!! Form::open(array('url' => '', 'role' => 'forl', 'id' => 'branchOpeningInfoForm', 'class' => 'form-horizontal form-groups')) !!}
@php // dd($userBranchId); @endphp @if ($userBranchId==1) {!! createForm::select('branch', $branchList,null,'Branch:',['id'=>'branch','required'=>'required']) !!} @endif {!! createForm::select('primaryProduct', $primaryProductList,null,'Loan Product:',['id'=>'primaryProduct','required'=>'required']) !!} {!! createForm::select('savingsProduct', $savingsProductList,null,'Savings Product:',['id'=>'savingsProduct','required'=>'required']) !!} {!! createForm::select('gender',$genderList,null,'Gender:',['required'=>'required']) !!} {!! createForm::text('depositCollection',null,'Deposit Amount:',['id'=>'depositCollection','required'=>'required']) !!} {!! createForm::text('thisMonthDepositCollection',null,'This Month Deposit Amount:',['id'=>'thisMonthDepositCollection','required'=>'required']) !!} {!! createForm::text('interestAmount',null,'Interest Amount:',['id'=>'interestAmount','required'=>'required']) !!} {!! createForm::text('thisMonthInterestAmount',null,'This Month Interest Amount:',['id'=>'thisMonthInterestAmount','required'=>'required']) !!} {!! createForm::text('savingRefund',null,'Savings Refund:',['id'=>'savingRefund','required'=>'required']) !!} {!! createForm::text('thisMontSavingRefund',null,'This Month Savings Refund:',['id'=>'thisMontSavingRefund','required'=>'required']) !!} {!! createForm::text('closingBalance',null,'Closing Balance:',['id'=>'closingBalance','readonly'=>'readonly']) !!}
{!! Form::close() !!}
{{-- update notification Modal --}} {{-- end update notification Modal --}} @endsection