{{--
--}}
Follow Up And Action Taken Form
@if (isset($errors) && $errors->any())

Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($complaint, ['method' => 'POST','files'=>'true','route' => ['complaints.followupstore', $complaint->id], 'class'=>'followup_form form-horizontal']) !!}
{{--Form--}}
@if($complaint->status == 'Closed') {!! Form::select('action_taken', ['Closed' => 'Closed'], null, ['placeholder' => 'Select Action', 'class' => 'action_taken form-control select2', 'required' => 'true']) !!} @else @if(Auth::user()->role == 53) {!! Form::select('action_taken', ['Closed' => 'Closed', 'In Process' => 'In Process', 'Forward' => 'Forward'], null, ['placeholder' => 'Select Action', 'class' => 'action_taken form-control select2', 'required' => 'true']) !!} @else {!! Form::select('action_taken', ['Closed' => 'Closed', 'Returned' => 'Returned', 'In Process' => 'In Process', 'Forward' => 'Forward'], null, ['placeholder' => 'Select Action', 'class' => 'action_taken form-control select2', 'required' => 'true']) !!} @endif @endif
{!! Form::textarea('remarks', null, array('placeholder' => 'Follow Up Details', 'class' => 'form-control', 'required' => 'true')) !!}
{!! Form::file('attachment', null, array('class' => '')) !!}
{!! Form::close() !!}