@extends('layouts.app') @section('title', 'Volunteer Registration – Myositis India') @section('content')
{{-- Flash message --}} @if(session('success'))
Registration successful

{{ session('success') }}

@endif {{-- Validation errors --}} @if ($errors->any())
Please check the highlighted fields
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Main card (Google Form style, same as patient) --}}
{{-- Top accent bar in MYOSITIS INDIA gradient --}}
{{-- Header --}}

🌟 Volunteer Registration

Join our mission to support the myositis community through awareness, events, and compassionate care. Fields marked with * are required.

{{-- Form body --}}
@csrf {{-- Section: Basic details --}}
{{-- First Name --}}
@error('fname')

{{ $message }}

@enderror
{{-- Last Name --}}
@error('lname')

{{ $message }}

@enderror
{{-- Mobile --}}
@error('phone')

{{ $message }}

@enderror
{{-- Email --}}
@error('email')

{{ $message }}

@enderror
{{-- Section: Login details --}}
{{-- Password --}}
@error('password')

{{ $message }}

@enderror
{{-- Confirm Password --}}
{{-- Section: Location & personal info --}}
{{-- Country --}}
@error('country')

{{ $message }}

@enderror
{{-- State --}}
@error('state')

{{ $message }}

@enderror
{{-- City --}}
@error('city')

{{ $message }}

@enderror
{{-- Gender --}}
@error('gender')

{{ $message }}

@enderror
{{-- Age --}}
@error('age')

{{ $message }}

@enderror
{{-- Section: About yourself --}}

Tell us about yourself and why you want to volunteer

Share your background, skills, availability, and what motivates you to support the myositis community. *

@error('message')

{{ $message }}

@enderror
{{-- Section: Security check & terms --}}
{{-- Captcha --}}

Security check

This small question helps us protect the form from spam. *

{{ $captchaQuestion }}
@error('captcha_answer')

{{ $message }}

@enderror
{{-- Terms --}}
@error('terms')

{{ $message }}

@enderror
{{-- Footer buttons --}}
Back to choose role
{{-- Processing modal --}} @include('components.registration-processing-modal') @endsection @push('scripts') @endpush