@extends('layouts/microfin_layout') @section('title', '| Edit Member Primary Product Transfer') @section('content') @php use App\ConstValue; @endphp
Edit 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', $member, null, array('class' => 'form-control', 'id' => 'memberIdFk', 'data-validate' => 'required')) !!}
{!! Form::label('new primary product', 'New Primary Product:*', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('newPrimaryProductFk', $primaryProduct, $memberPrimaryProductTransferDetails->newPrimaryProductFk, array('class' => 'form-control', 'id' => 'newPrimaryProductId', 'data-validate' => 'required')) !!}
{!! Form::label('transfer date', 'Transfer Date:*', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('transferDate', $memberPrimaryProductTransferDetails->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', $memberPrimaryProductTransferDetails->note, ['class' => 'form-control', 'id' => 'note', 'type' => 'textarea', 'rows' => '3', 'cols' => '50']) !!}
{!! Form::submit('Submit', ['id' => 'submit', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}