@extends('admin.layouts.main') @section('title') Job - Information @endsection @section('content') @include("admin.common.sidebar") {{ @trans('job.recruitment') }} {{ @trans('job.jobs') }} {{ @trans('job.job_information') }} 1. {{ @trans('job.job_info') }} trending_flat2. {{ @trans('job.role') }} trending_flat3. {{ @trans('job.requirements') }} trending_flat4. {{ @trans('job.prefered') }} @csrf @if($id) @endif {{ @trans('job.job_info') }} {{ @trans('job.client') }} * {{ @trans('job.select') }} @foreach($companies as $company) company_id == $company->id) selected="selected" @endif>{{ $company->name}} @endforeach {{ @trans('job.client_contact') }} * {{ @trans('job.select_contact') }} {{ @trans('job.recruiter') }} * {{ @trans('job.select') }} @foreach($recruiters as $recruiter) assigned_user_id == $recruiter->id) selected="selected" @endif>{{ $recruiter->first_name }} {{ $recruiter->last_name }} @endforeach {{ @trans('job.job_title') }} * {{ @trans('job.no_of_opening') }} * {{ @trans('job.summary') }} * @if($id){{ $job->summary }}@endif @if($id && count($job->project) > 0) Select Project * {{ @trans('job.select') }} @foreach($job->project as $project) {{ $project->name }} @endforeach @else Map this Job to the Project * Select from the Existing Project Create a New Project Select Project * {{ @trans('job.select') }} Project Title * @endif @if(Session::has('editUrl')) {{ @trans('job.cancel') }} @else {{ @trans('job.cancel') }} @endif @if(Session::has('editUrl')) {{ @trans('job.save') }} @else {{ @trans('job.save_next') }} @endif @endsection @push('pageJs') {!! JsValidator::formRequest('App\Http\Requests\Job\StoreJobInfo', '#frmInfo') !!} @endpush