@extends('layouts/ums_layout') @section('title', '| New Trimester') @section('content')
Add Trimester
{!! Form::open(array('url' => '', 'id' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('trimesterTypeId', 'Trimester:', ['class' => 'col-sm-3 control-label']) !!}

{!! Form::label('year', 'Year:', ['class' => 'col-sm-2 control-label']) !!}

{!! Form::label('batch', 'Batch:', ['class' => 'col-sm-3 control-label']) !!}
{!!Form::text('batch',$batch, ['class' => 'form-control', 'id' => 'batch', 'type' => 'text','placeholder' => 'Enter batch'])!!}

{!! Form::label('startDate', 'Start Date:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('startDate',date('Y-m-d'), ['class' => 'form-control', 'id' => 'startDate', 'type' => 'text', 'placeholder' => 'Enter Start Date','readonly'=>'true']) !!}

{!! Form::label('endDate', 'End Date:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('endDate', date('Y-m-d'), ['class' => 'form-control', 'id' => 'endDate', 'type' => 'text', 'placeholder' => 'Enter End Date','readonly'=>'true']) !!}

{!! Form::label('priority', 'Priority:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('priority',$value = null,['class' => 'form-control', 'id' => 'priority', 'type' => 'text']) !!}

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