@extends('layouts.dashboard') @section('content')
@if(Session::has('msg'))

{{ Session::get('msg') }}

@endif
{{-- Client Info Card (read-only) --}}

Client Information

Name: {{ $rmDetails->clientDetails->name ?? 'N/A' }}
Contact: {{ $rmDetails->clientDetails->phone ?? 'N/A' }}
Email: {{ $rmDetails->clientDetails->email_id ?? 'N/A' }}
@if($rmDetails->budget)
RM Budget: {{ $rmDetails->budget }}
@endif
{{-- Create Event Form --}}

Event Details

{{ csrf_field() }}
{{-- Event Type --}}
{{-- Category --}}
{{-- Event Name --}}
{{-- Number of Guests --}}
{{-- Event Date --}}
{{-- Event Time --}}
{{-- Country --}}
{{-- State --}}
{{-- City --}}
{{-- Description --}}
{{-- Services Section --}}

Services

{{-- Pass services data to JS for dynamic row creation --}} @endsection