@include('partials.styles')
@include('partials.nav')
Corrective Actions / Edit
Edit Corrective Action
@can('corrective-actions.update')
@csrf @method('put')
Title
Status
status ?? '') === 'open')>Open
status ?? '') === 'closed')>Closed
Priority
priority ?? '') === 'low')>Low
priority ?? '') === 'medium')>Medium
priority ?? '') === 'high')>High
Due On
Completed On
Site
—
@foreach ($sites as $site)
site_id === $site->id)>{{ $site->name }}
@endforeach
Assigned To
—
@foreach ($users as $user)
assigned_to === $user->id)>{{ $user->name }}
@endforeach
Description
{{ $action->description }}
Additional People
@include('partials.tag-input', ['tagSuggestions' => $tagSuggestions ?? [], 'tagInitial' => $action->tags ?? []])
Attachments
Save
Cancel
@else
You do not have permission to edit this record.
Back
@endcan