@extends('layouts/microfin_layout') @section('title', '| Special Members Opening Cash In Hand') @section('content') @include('successMsg')

Special Members Opening Cash In Hand

{!! Form::open(['role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'specialMemberOpeningBalenceForm']) !!}
@if($openingDate == 0)
{!! Form::label('', 'Select Opening Date:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('openingDate', null, ['id'=>'openingDate', 'class'=>'form-control input-sm readonly', 'autocomplete'=>'off','style'=>'cursor:pointer;','required']) !!}
@else
{!! Form::label('', 'Selected Opening Date:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('openingDate', date('d-m-Y', strtotime($openingDate)), ['id'=>'openingDateSelected', 'class'=>'form-control input-sm readonly', 'autocomplete'=>'off','style'=>'cursor:pointer;', 'readonly']) !!}
@endif




@foreach ($openingBalanceConfigurations as $openingBalanceConfiguration) @endforeach
SL# Branch Opening Cash In Hand (TK)
Name Code
{{ ++$no }} {{ $openingBalanceConfiguration->branchName }} {{ $openingBalanceConfiguration->branchCodeWith0 }} {!! Form::hidden('branchIdFk[]', $openingBalanceConfiguration->id) !!} {!! Form::text('amount[]', $openingBalanceConfiguration->openingCashInHand, ['class' => 'form-control text-right amount', 'id' => 'amount', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off']) !!}
{!! Form::label('submit', ' ', ['class' => 'col-sm-5 control-label']) !!}
{!! Form::submit('Save', ['id' => 'specialMemberForDueRegisterSubmit', 'class' => 'btn btn-success']) !!}
{!! Form::close() !!}
@endsection