@extends('frontend.frontend-page-master') @section('site-title') {{__('Apply To').' '}}{{$job->title}} @endsection @section('page-title') {{__('Apply To').' '}}{{$job->title}} @endsection @section('content')
@include('backend.partials.message') @if($errors->any())
    @foreach($errors->all() as $message)
  • {{$message}}
  • @endforeach
@endif
@csrf {!! render_form_field_for_frontend(get_static_option('apply_job_page_form_fields')) !!}
@endsection