@extends('layouts.main_frontend') @section('title','RCSA - Add Action-plan Form') @section('main-content') @csrf Action Plan Form Field Organization Name Department Name / Business Entity Name / Process * Select Department Name / Business Entity Name / Process @if($unitType) @foreach($unitType as $key => $val) unit_id : old('unit_id')) == $val->id ? 'selected' : '' }}>{{ $val->name }} @endforeach @endif Action Reference Number * Risk Event Reference Number * Select Risk Reference Number @if($risks) @foreach($risks as $key => $val) risk_reference_num : old('risk_reference_num')) == $val->reference_no ? 'selected' : '' }}>{{ $val->reference_no }} @endforeach @endif Risk Event Description * Action/Task * Action Plan Owner * Select Action Plan Owner @if($units) @foreach($units as $key => $val) responsible_persons : old('team_responsible')) == $val->name ? 'selected' : '' }}>{{ $val->name }} @endforeach @endif Priority Level * @foreach($priorityLevel as $key => $val) priority_level : old('priority_level')) == $key ? 'selected' : '' }}>{{ ucwords($val) }} @endforeach Target Completion Date * Status * @foreach($planStatus as $key => $val) action_plan_status : old('action_plan_status')) == $key ? 'selected' : '' }}>{{ ucwords($val) }} @endforeach Comments Submit @endsection @section('additionaljs') @endsection