@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('year')) {{$errors->first('year') }} @endif @if ($errors->has('month')) {{$errors->first('month') }} @endif
@if ($errors->has('requirement')) {{$errors->first('requirement') }} @endif
@if ($errors->has('scope')) {{$errors->first('scope') }} @endif
@endsection