@extends('backend.layouts.layouts') @section('content')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif

Add New Job

@csrf
@if ($errors->has('job_name')) {{$errors->first('job_name') }} @endif
@if ($errors->has('location')) {{$errors->first('location') }} @endif
@if ($errors->has('country')) {{$errors->first('country') }} @endif
@if ($errors->has('education')) {{$errors->first('education') }} @endif
@if ($errors->has('experience')) {{$errors->first('experience') }} @endif
@if ($errors->has('skills')) {{$errors->first('skills') }} @endif
@if ($errors->has('type')) {{$errors->first('type') }} @endif
@if ($errors->has('description')) {{$errors->first('description') }} @endif
@if ($errors->has('form_link')) {{$errors->first('form_link') }} @endif
@if ($errors->has('requirement')) {{$errors->first('requirement') }} @endif
@endsection