@extends('layouts.app') @section('title', 'Healthcare Professional 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, Myositis India colors) --}}
{{-- Top accent bar: sky → green like brand --}}
{{-- Header --}}

Healthcare Professional Registration

Join our medical community to collaborate, share expertise, and enhance myositis care worldwide. 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: Location --}}
{{-- Country --}}
@error('country')

{{ $message }}

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

{{ $message }}

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

{{ $message }}

@enderror
{{-- Section: Professional information --}}
{{-- Gender --}}
@error('gender')

{{ $message }}

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

{{ $message }}

@enderror
{{-- Specialization (dropdown like screenshot) --}}
@error('doctorSpeciality')

{{ $message }}

@enderror
{{-- Myositis Experience --}}
@error('myositis_count')

{{ $message }}

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

{{ $message }}

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

Tell us about your professional background

Share your experience, interests, or how you'd like to contribute to our 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
{{-- Include Processing Modal Component --}} @include('components.registration-processing-modal') @endsection @push('scripts') @endpush