@extends('layouts.main_frontend') @section('title','RCSA - Edit Action-plan Form') @section('main-content')action_edit.css @csrf @method('PUT') Edit 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 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 * {{ $model->risk_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) status) ? $model->status : old('action_plan_status')) == $key ? 'selected' : '' }}>{{ ucwords($val) }} @endforeach Comments {{ $model->comments ?? ''}} Submit @endsection @section('additionaljs') @endsection