@extends('layouts.master') @section('content')

Add Candidate

@if ($error = Session::get('error'))

{{ $error }}

@endif @if ($message = Session::get('message'))

{{ $message }}

@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(!empty($attachment)) @endif
@if(!empty($attachment)) Attachment:{{ $attachment->original_filename }} remove @endif
@if(!empty($extraFields) && count($extraFields)) @foreach($extraFields as $field)
{!! $field['addHTML'] !!}
@endforeach @endif

Others

Back
@include('candidates::partials.add-source-modal'); @endsection