@extends('admin.layouts.admin') @section('content')

Update Job

@if(session('alert-green'))
{{ session('alert-green') }}
@endif @if(session('alert-danger'))
{{ session('alert-danger') }}
@endif @if($errors->any())
@foreach ($errors->all() as $error)
* {{$error}}
@endforeach
@endif {{ session('status') }}

Update Job info

@csrf
@if ($errors->has('title_id')) {{ $errors->first('title_id') }} @endif
Please select a valid title.



Please select a valid status.
@php $location = []; foreach($jobAreas as $area){ if(in_array($area->id, $title_locations)){ array_push($location, $area->name); } } @endphp

@if ($errors->has('closing_date')) {{ $errors->first('closing_date') }} @endif
 
@include('admin.sections.footer')
@endsection @section('script') @endsection