@extends('layouts/microfin_layout') @section('title', '| Add Samity Closing') @section('content')
New Samity Closing
{!! Form::open(array('url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups')) !!}
{!! Form::label('samity', 'Name:', ['class' => 'col-sm-2 control-label']) !!}
@php // dd($damageData['samityList'], $damageData['samityListCode']); @endphp {!! Form::select('samityId', $damageData['samityList'], null, array('class'=>'form-control', 'id' => 'samityId')) !!}
{!! Form::label('closing date', 'Closing Date:', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('closingDate',($damageData['softwareDate']), ['class' => 'form-control', 'id' => 'closingDate', 'type' => 'text', 'readonly' => 'readonly']) !!}
{!! Form::submit('Submit', ['id' => 'submit', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection