@extends('frontView.app') @section('title_area') Job Appliction Form @endsection @section('content')
{{ __('Job Appliction Form') }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @include ('/frontView.application.form', ['formMode' => 'create'])
@endsection