@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'], false, ) !!}
{!! Form::select('campus_id', ($campus), null, array('class'=>'form-control', 'id' => 'campus_id','placeholder' => 'Please Select Campus')) !!}

{!! Form::label( 'building_id', 'Building: *', ['class' => 'col-sm-3 control-label'], false, ) !!}
{!! Form::select('building_id', ($building), null, array('class'=>'form-control', 'id' => 'building_id','placeholder' => 'Please Select Building')) !!}

{!! Form::label( 'floor_id', 'Floor: *', ['class' => 'col-sm-3 control-label'], false, ) !!}
{!! Form::select('floor_id', ($floor), null, array('class'=>'form-control', 'id' => 'floor_id','placeholder' => 'Please Select Floor')) !!}

{!! Form::label( 'room_category_id', 'Room Category: *', ['class' => 'col-sm-3 control-label'], false, ) !!}
{!! Form::select('room_category_id', ($roomCategory), null, array('class'=>'form-control', 'id' => 'room_category_id','placeholder' => 'Please Select Room Category')) !!}

{!! 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 room title/name']) !!}

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

{!! Form::label( 'capacity', 'Room Capacity: *', ['class' => 'col-sm-3 control-label'], false, ) !!}
{!! Form::text('capacity', $value = null, ['class' => 'form-control', 'id' => 'capacity', 'type' => 'text', 'placeholder' => 'Enter room capacity']) !!}

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