@extends('layouts.master') @section('title', $title) @section('content')

Settings: Administation

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

{{ $error }}

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

{{ $success }}

@endif

Career Portal Settings

@csrf

Enable Public Career Portal:

Allow Browsing of All Public Job Orders:

Allow candidates to register and update their contact information

Show Company Column in Job Order List:

Show Department Column in Job Order List:

Career Portal URL:

Check All Open Position

Questionnaires

Build a questionnaire to provide to candidates before they apply. You can specify actions to perform based on their responses.

@if(!empty($questionnaire)) @foreach($questionnaire as $quest) @endforeach @endif
Title Description Status Remove
{{ $quest->title }} {{ $quest->description }} {{ $quest->is_active == 1 ? 'Active' : 'Inactive'}}

Templates

You can choose a style for your Career Portal by clicking a template below and pressing "Set as Active".

You may also duplicate an existing template to make a custom template, allowing you make the Career Portal closer match the look and feel of your corporate web page. Customizing a template requires basic knowledge of HTML and CSS.

@php $default = '0'; @endphp

Built in Templates

@foreach($careerPortalTemplateDefaultNames as $template) @php if($template->career_portal_name == $careerPortalSettingsRS['activeBoard']){ $default = '1'; } @endphp {{$template->career_portal_name}} {{$template->career_portal_name == $careerPortalSettingsRS['activeBoard'] ? '(Active)' : ''}} @endforeach

Custom Templates

{{$careerPortalSettingsRS['activeBoard']}}

@csrf
@endsection @section('pagejs') @endsection