@extends('layouts/microfin_layout') @section('title', '| Add Member Samity Transfer') @section('content')
New Member Closing
{!! Form::open(array('url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups validate', 'id'=>'memberClosingForm')) !!}
@if (Auth::user()->branchId == 1)
{!! Form::label('branch', 'Branch:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('branch', $branchList, null, ['id'=>'branch','class' => 'form-control']) !!}
@endif
{!! Form::label('samity', 'Samity:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('samity', $samityList, null, ['id'=>'samity','class' => 'form-control']) !!}
{!! Form::label('member', 'Member:*', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('memberIdFk', array('' => 'Select'), null, array('class' => 'form-control', 'id' => 'select-to', 'data-validate' => 'required')) !!}
{!! Form::label('member closing date', 'Member Closing Date:*', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('closingDate', $branchDate, ['class' => 'form-control', 'id' => 'closingDate', 'type' => 'text', 'readonly' => 'readonly', 'data-validate' => 'required']) !!}
{!! Form::label('note', 'Note:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::textarea('note', $value = null, ['class' => 'form-control', 'id' => 'note', 'type' => 'textarea', 'rows' => '3', 'cols' => '50']) !!}

{!! Form::submit('Submit', ['id' => 'submit', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection