@extends('layouts.main') @section('title','Upload Candidate') @section('content')
@if(Session::has('success'))
Success! {{ Session::get('success') }}
@endif @if(Session::has('error'))
Error! {{ Session::get('error') }}
@endif
{!! Form::open(["url" => "pro/company/upload-batch-candidates", "method" => "POST", "id" => "upload_candidate_form", "name" => "test_result_form",'files' => true]) !!}
Batch Name* :
{!! Form::text('batch_name', '', ['class' => 'form-control', 'id'=>'batch_name', 'placeholder' => 'Enter Batch Name']) !!}
@php $defaultContent = '

Dear {candidate_name},

Kindly, use the below registration link to capture your sample images and upload the valid identity proof.

Link: {link},

start Date: {start_date}

End Date: {end_date}

'; @endphp
{!! Form::textarea('email_content',$defaultContent,['class'=>'email_content','id'=>'email_content']) !!}

Start Date * :

{!! Form::text('start_date','',['class'=>'form-control','placeholder'=>'e.g. 14-08-2018', 'id' => 'start_date']) !!}

End Date * :

{!! Form::text('end_date','',['class'=>'form-control','placeholder'=>'e.g. 15-08-2018', 'id' => 'end_date']) !!}

{!! Form::close() !!}
@endsection @section('footer') @if (Session::has('batch_candidate_excel')) @endif @endsection