@extends('layouts/eims_layout') @section('title', '| ' . $pageTitle) @section('content')
Add {{ $pageTitle }}
{!! Form::open(['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, [ 'class' => 'form-control', 'id' => 'campus_id', 'placeholder' => 'Please Select Campus', 'autocomplete' => 'off', ]) !!}

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

{!! 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 floor title/name', 'autocomplete' => 'off', ]) !!}

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

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