@extends('layouts.auth') @section('title', 'Create account') @section('auth_title', 'Create your candidate account') @section('auth_subtitle', 'Register to apply for ' . ($appSettings->app_name ?? config('app.name', 'department')) . ' positions.') @section('content') @php $svgUser = ''; $svgMail = ''; $svgLock = ''; $svgErr = ''; @endphp
@csrf
{!! $svgUser !!}
Letters, spaces, hyphens, and periods only. Do not enter your CNIC number here.
@error('name')
{!! $svgErr !!}{{ $message }}
@enderror
{!! $svgMail !!}
@error('email')
{!! $svgErr !!}{{ $message }}
@enderror
{!! $svgLock !!}
Use 8+ characters with a mix of letters and numbers.
@error('password')
{!! $svgErr !!}{{ $message }}
@enderror
{!! $svgLock !!}
{{-- ── Anti-bot: math captcha + honeypot ──────────────────────────────── The honeypot is hidden via inline CSS (off-screen + tab-skip) so humans never see or focus it; bots that auto-fill every input WILL set it. The math question is server-rendered with a session-stored answer. Both are verified by CandidateRegisterRequest::withValidator. --}}
@error(\App\Support\SimpleCaptcha::FIELD_NAME)
{!! $svgErr !!}{{ $message }}
@enderror
or

Already registered? Sign in

@endsection @push('scripts') @endpush