@extends('layouts.dashboard') @section('title-content') {{ config('app.name') }} | Make Decision @endsection @section('content')

Make Decision on {{ $course->course_code }}

{{ Form::open(['route' => 'final_result.submit', 'class' => 'ca-upload', 'method' => 'POST', 'role' => 'form', 'enctype' => 'multipart/form-data']) }} {{ Form::hidden('course_id', $id) }} {{ Form::hidden('batch_id', $batch_id) }} {{ Form::hidden('type', $type) }}
{!! Form::label('confirmation_status', 'Choose your Decision') !!} {!! Form::select('confirmation_status', $decision_option, null, [ 'class' => 'form-control', 'required' => 'true', ]) !!}
{!! Form::label('comments', 'Please provide your Comments') !!} {!! Form::textarea('comments', null, ['class' => 'form-control', 'rows' => '4', 'required' => 'true']) !!}



{{ Form::button('Submit', ['type' => 'submit', 'class' => 'col-sm-5 pull-right btn btn-danger width-xl waves-effect waves-light']) }}

Comments

@foreach ($confimation_comments as $item)
{{ $item->first_name . ' ' . $item->middle_name . ' ' . $item->last_name }} {{ $item->created_at }}
{{ $item->comments }}.

@endforeach
@endsection