@extends('layouts.app') @section('content') {{-- Quill CSS --}}
@if ($errors->any())
@endif {{-- Page Header --}}
Edit Job
Back to Jobs
@csrf
{{-- ===== LEFT COLUMN ===== --}}
{{-- BASIC INFO --}}
Basic Information
Job title is required.
Description is required.
{{-- JOB TYPE --}}
Job Type & Work Mode
Required.
Required.
{{-- LOCATION --}}
Location
City is required.
Country is required.
{{-- SALARY --}}
Salary
{{-- APPLICATION --}}
Application Settings
Required.
{{-- end left --}} {{-- ===== RIGHT COLUMN ===== --}}
{{-- STATUS --}}
Status
{{ ucfirst($job->status) }}
{{-- IMAGES --}}
Images
@foreach($job->media->where('type','image') as $media)
job image
@endforeach
{{-- VIDEO --}}
Video Links
@foreach($job->media->where('type','video') as $video) @endforeach
{{-- SKILLS --}}
Skills
{{-- SUBMIT --}}
{{-- end right --}}
{{-- Quill JS --}} @endsection