@extends('layouts/microfin_layout') @section('title', '| Add Member Primary Product Transfer') @section('content') @php use App\ConstValue; @endphp
New Member Primary Product Transfer
{!! Form::open(array('url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups validate')) !!}
{!! Form::label('member name', 'Member Name:*', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('memberIdFk', array('' => 'Select'), null, array('class' => 'form-control', 'id' => 'select-to', 'data-validate' => 'required')) !!}
{!! Form::label('new primary product', 'New Primary Product:*', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('newPrimaryProductFk', array('' => 'Select'), null, array('class' => 'form-control', 'id' => 'newPrimaryProductId', 'data-validate' => 'required')) !!}
{!! Form::label('transfer date', 'Transfer Date:*', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('transferDate', $value = $damageData['transferDate'], ['class' => 'form-control', 'id' => 'transferDate', '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() !!}