@extends('layouts/microfin_layout') @section('title', '| Application Form') @section('content') @include('microfin.savings.stack') @stack('formStyleScript')
{{-- {{ $title }} --}}
{!! Form::open(['url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'rootwizard']) !!} {!! Form::hidden('applicationId', $application->id) !!}
{!! Form::label('cash', 'Cash In Hand:', ['class' => 'col-sm-4 control-label required']) !!}
{!! Form::text('member', $application->cashInHand, [ 'class' => 'form-control', 'type' => 'text', $application->id > 0 ? 'disabled' : null, ]) !!}
{!! Form::label('cashInBank', 'Cash iN Bank:', ['class' => 'col-sm-4 control-label required']) !!}
{!! Form::text('cashInBank', $application->cashInBank, [ 'class' => 'form-control', 'type' => 'text', 'disabled' => 'disabled', ]) !!}
{!! Form::label('loanDisbursementRequest', 'loan Disbursement Request(HO):', [ 'class' => 'col-sm-4 control-label', ]) !!}
{!! Form::text('loanDisbursmentRequest', $application->loanDisbursmentRequest, [ 'class' => 'form-control', 'readonly' => 'readonly', ]) !!}
{!! Form::label('loanDisbursment', 'Loan Disbursment:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('loanDisbursment', $application->loanDisbursment, [ 'class' => 'form-control', 'readonly' => 'readonly', ]) !!}
{!! Form::label('savingsRefund', 'Savings Refund:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('savingsRefund', $application->savingsRefund, [ 'class' => 'form-control', 'readonly' => 'readonly', ]) !!}
{!! Form::label('othersExp', 'Others Exp:', ['class' => 'col-sm-4 control-label required']) !!}
{!! Form::text('othersExp', $application->othersExp, [ 'class' => 'form-control', 'readonly' => 'readonly', ]) !!}
{!! Form::label('estima', 'Estima:', ['class' => 'col-sm-4 control-label required']) !!}
{!! Form::text('estima', $application->estima, [ 'class' => 'form-control', 'readonly' => 'readonly', ]) !!}
{!! Form::label('fundDemand', 'Fund Demand:', ['class' => 'col-sm-4 control-label required']) !!}
{!! Form::text('fundDemand', $application->fundDemand, [ 'class' => 'form-control', 'readonly' => 'readonly', ]) !!}
{!! Form::label('balance', 'Balance:', ['class' => 'col-sm-4 control-label required']) !!}
{!! Form::text('balance', $application->balance, [ 'class' => 'form-control', 'readonly' => 'readonly', ]) !!}
{!! Form::label('remarks', 'Remarks:', ['class' => 'control-label']) !!} (Optional) {!! Form::textarea('remarks', null, [ 'class' => 'form-control mini_textarea', 'placeholder' => 'Write something here...', ]) !!}
    {{-- {!! Form::button('Reject', ['id' => 'reject', 'class' => 'btn btn-danger']) !!} --}} {{-- @if ($application->originStepNo != $application->currenStepNo && $application->currenStepNo > 1) --}} {!! Form::button('Return', ['id' => 'return', 'class' => 'btn btn-warning']) !!} {{-- @endif --}} {!! Form::submit('Approve', ['id' => 'submit', 'class' => 'btn btn-info']) !!}
@include('gnr.tools.approvalConfig.approvalLogs')
{!! Form::close() !!}
@stack('memberSearch') @stack('formJavaScript') @endsection