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

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

{!! Form::label('numTotalCourse', 'Total Course:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('numTotalCourse', $value = null, ['class' => 'form-control', 'id' => ' numTotalCourse', 'type' => 'text', 'placeholder' => 'Enter Total course','required']) !!}

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

{!! 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