@extends('layouts.master') @php use Illuminate\Support\Facades\Storage; @endphp @section('title', $title) @section('content')

Candidate Create

@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

Manually Enter Information

Import Resume

Upload Files

@if(!empty($attachment)) @endif
@if(!empty($attachment)) Attachment:{{ $attachment->original_filename }} remove @endif

(hint: you may also paste the resume contents)



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