@extends('layouts/ums_layout') @section('title', '| New Faculty') @section('content')
Add Faculty
{!! Form::open(array('url' => '', 'id' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('name', 'Short Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('name', $value = null, ['class' => 'form-control', 'id' => 'name', 'type' => 'text', 'placeholder' => 'Enter Faculty Name']) !!}

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

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

{!! Form::label('startDate', 'Start Date:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('startDate', $value = null, ['class' => 'form-control', 'id' => 'startDate', 'type' => 'text', 'placeholder' => 'Start Date','readonly'=>true]) !!}

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