@extends('layouts.app') @section('title', 'Patient 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) --}}
{{-- Top accent bar with Myositis India blue→green gradient --}}
{{-- Header --}}

Welcome to Patient Registration Page

We are excited to have you join our community.

{{-- Form body --}}
@csrf {{-- Section: Basic details --}}
{{-- Patient Type --}}
@error('patient_type')

{{ $message }}

@enderror
{{-- 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: Medical information --}}
{{-- Type of Myositis --}}
@error('disease_id')

{{ $message }}

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

{{ $message }}

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

{{ $message }}

@enderror
{{-- Doctor Name --}}
@error('doctorName')

{{ $message }}

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

{{ $message }}

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

Tell us about yourself

Share your story, concerns, or what you hope to gain from this 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 (same include) --}} @include('components.registration-processing-modal') @endsection @push('scripts') @endpush