123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- @extends('layouts.master')
- @section('navigation')
- @if($user->role==1)
- @include('local.managers.admins._navigation')
- @elseif($user->role==2)
- @include('local.managers.sCoords._new_navigation')
- @elseif($user->role==3)
- @include('local.managers.pCoords._new_navigation')
- @else
- @include('local.professors._navigation')
- @endif
- @stop
-
- @section('main')
-
- <div class="row">
- <div class="col-md-12">
- <p>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.</p>
-
- {{ Form::open(array('action'=>'FeedbackController@send', 'class'=>'form-horizontal')) }}
- <div class="form-group">
- {{ Form::label('type', 'Type of Comment', array('class'=>'col-md-2')) }}
- <div class="col-md-10">
- {{ Form::select(
- 'type',
- array(
- '0' => 'Error Report',
- '1' => 'Question',
- '2'=>'Suggestion',
- '3'=>'Other'),
- null,
- array('class'=>'form-control', 'name'=>'type'))
- }}
- </div>
- </div>
-
- <div class="form-group">
- {{ Form::label('email', 'Copy to', array('class'=>'col-md-2')) }}
- <div class="col-md-10">
- <select name="email" id="email" class="form-control" aria-labelledby="email">
- <option value="{{ $user->email }}">{{ $user->email }}</option>
- @if($user->alternate_email!=NULL)
- <option value="{{ $user->alternate_email }}">{{ $user->alternate_email }}</option>
- @endif
- </select>
- </div>
- </div>
-
- <div class="form-group">
- <div class="col-md-12">
- {{ Form::label( 'comment', 'Comment') }}
- {{ Form::textarea('comment', '', array('class'=>'form-control', 'name'=>'comment')) }}
- </div>
- </div>
-
- <div class="form-group">
- <div class="col-md-12">
- {{ Form::submit('Send', array('class'=>'btn btn-lg btn-primary pull-right'))}}
- </div>
- </div>
-
- {{ Form::close() }}
- </div>
- </div>
-
- @stop
-
-
|