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

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

{!! Form::label('buildingNo', 'Building No.:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('buildingNo', $value = null, ['class' => 'form-control', 'id' => 'buildingNo', 'type' => 'text', 'placeholder' => 'Enter Building No.']) !!}

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

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