@extends('layouts/eims_layout') @section('title', '| ' . $pageTitle) @section('content')
Add {{$pageTitle}}
{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!} {{--
{!! Form::label('campus_id', 'Campus: *', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('campus_id', ($campus), null, array('class'=>'form-control', 'id' => 'campus_id','placeholder' => 'Please Select Campus')) !!}

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

{!! Form::label( 'faculty_code_no', 'Faculty Code/No: *', ['class' => 'col-sm-3 control-label'], false, ) !!}
{!! Form::text('faculty_code_no', $value = null, ['class' => 'form-control', 'id' => 'faculty_code_no', 'type' => 'text', 'placeholder' => 'Enter Faculty no']) !!}

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