Jobs Data Editor
@if(session('success'))
{{ session('success') }}
@endif
@csrf
💾 Save All Changes
General Information
@foreach($data as $key => $value) @if($key !== 'jobs' && is_string($value))
{{ ucfirst($key) }}:
@endif @endforeach
Jobs
Drag and drop to reorder (manual reorder: change the order of the fields below)
@foreach($data['jobs'] as $index => $job)
Job #{{ $index + 1 }}
Title:
Company:
Location:
Date:
Tasks:
@foreach($job['tasks'] as $taskIndex => $task)
Task {{ $taskIndex + 1 }}:
{{ $task }}
@endforeach
New Task:
New Task:
Delete Job
Move Up
Move Down
@endforeach
+ Add New Job
💾 Save All Changes