@extends('layouts/acc_layout') @section('title', '| MIS Configuration') @section('content')
Add MIS Configuration
{!! Form::open(array('url' => '', 'id' => 'misConfigurFormId', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('moduleId', 'Module:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('moduleId', $moduleOption, null,['id'=>'moduleId','class'=>'form-control input-sm']) !!}

{!! Form::label('misTypeId_Fk', 'MIS Type:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('misTypeId_Fk', [''=>'--Select Module First--'], null,['id'=>'misTypeId_Fk','class'=>'form-control input-sm']) !!}

{!! Form::label('misName', 'MIS Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('misName', $value = null, ['class' => 'form-control', 'id' => 'misName', 'type' => 'text', 'placeholder' => 'Enter MIS Name']) !!}

{!! Form::label('tableFieldName', 'Table Field Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('tableFieldName', $value = null, ['class' => 'form-control', 'id' => 'tableFieldName', 'type' => 'text', 'placeholder' => 'Enter Table Field Name']) !!}

{!! Form::label('submit', ' ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'submitButton', 'class' => 'btn btn-info']) !!} {{ Form::reset('Reset', ['class' => 'btn btn-warning']) }} Close
{!! Form::close() !!}
{{-- --}} @endsection