@extends('layouts/ums_layout') @section('title', '| New Activities') @section('content')
Section Settings
{!! Form::open(array('url' => 'ums/saveSubSectionSetting', 'id' => 'sectionSettingsFrom', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('employeeId', 'Select Trimester:', ['class' => 'col-sm-3 control-label']) !!}

{!! Form::label('employeeId', 'Select program', ['class' => 'col-sm-3 control-label']) !!}

{!! Form::label('employeeId', 'Select Section', ['class' => 'col-sm-3 control-label']) !!}

{!! Form::label('Total Section Students', 'Total Students:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('totalSectionStudent', $value = null, ['class' => 'form-control', 'id' => 'totalSectionStudent', 'disabled'=>'true','type' => 'text', 'placeholder' => 'Total Section Students']) !!}

{!! Form::label('Add Sub Section Name', 'Add Sub Section Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('sectionName[]', $value = null, ['class' => 'form-control', 'id' => 'minCgpa', 'type' => 'text', 'required'=>'true', 'placeholder' => 'Section Name']) !!}
{!! Form::number('sectionCapacity[]', $value = null, ['class' => 'form-control', 'id' => 'minCgpa', 'type' => 'text', 'placeholder' => 'Total Capacity']) !!}
{!! Form::label('submit', ' ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::submit('submit', ['id' => 'addStudentSettings', 'class' => 'btn btn-info']) !!} {{ Form::reset('Reset', ['class' => 'btn btn-warning']) }} Close
{!! Form::close() !!}
@include('dataTableScript') @endsection