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

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

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

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

{!! Form::label('courseTypeId', 'Course Type:', ['class' => 'col-sm-3 control-label']) !!}

{!! 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('specilization', 'Specilization:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('specilization', $value = null, ['class' => 'form-control', 'id' => 'specilization', 'type' => 'text', 'placeholder' => 'Enter Specilization','required']) !!}

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

--}}
{!! Form::label('amount', 'Course Fee:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('amount', $value = null, ['class' => 'form-control', 'id' => 'amount', 'type' => 'text', 'placeholder' => 'Enter Course Fee','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