Approval System
{{ $supervisorName }} {{-- - {{ $supervisor->boss_emp->emp_id }} --}}
{{-- Position : {{ $supervisor->boss_emp->position }}, Branch : {{ $supervisor->boss_emp->branch }} --}}

{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'approveFormForAllSector')) !!} {!! Form::hidden('applicationId', $data->id,['id'=>'applicationId']) !!}
Comment Box
{!! Form::textarea('approvalComment', null, ['id'=>'approvalComment','class'=>'form-control form-control js-comment-src','placeholder' => 'Enter comment here...', 'rows' => 2, 'cols' => 40]) !!}

{{-- @php dd($isRejectAccess); @endphp --}}
@if ($isRejectAccess == true) {!! Form::button('Reject', ['id' => 'reject', 'class' => 'btn btn-danger']) !!} @endif @if ($isReturnAccess == true) {!! Form::button('Return', ['id' => 'return', 'class' => 'btn btn-warning']) !!} @endif {!! Form::button('Approve', ['id' => 'approve', 'class' => 'btn btn-success']) !!} {{-- {!! Form::submit('Approve', ['id' => 'approve', 'class' => 'btn btn-success']); !!} --}}
{!! Form::close() !!}