@extends('layouts.master') @section('navigation') @if($user->role==1) @include('local.managers.admins._navigation') @elseif($user->role==2) @include('local.managers.sCoords._navigation') @elseif($user->role==3) @include('local.managers.pCoords._navigation') @else @include('local.professors._navigation') @endif @stop @section('main')

Use this form to let us know of any comments you have about the application. Please note that all fields are required. When writing comments, be as descriptive as possible, especially when you want to report errors. Include the name of the page you are commenting about, if applicable. Once you are done, click 'Send'. A copy will be sent to your chosen email address.

{{ Form::open(array('action'=>'FeedbackController@send', 'class'=>'form-horizontal')) }}
{{ Form::label('type', 'Type of Comment', array('class'=>'col-md-2')) }}
{{ Form::select( 'type', array( '0' => 'Error Report', '1' => 'Question', '2'=>'Suggestion', '3'=>'Other'), null, array('class'=>'form-control', 'name'=>'type')) }}
{{ Form::label('email', 'Copy to', array('class'=>'col-md-2')) }}
{{ Form::label( 'comment', 'Comment') }} {{ Form::textarea('comment', '', array('class'=>'form-control', 'name'=>'comment')) }}
{{ Form::submit('Send', array('class'=>'btn btn-lg btn-primary pull-right'))}}
{{ Form::close() }}
@stop