@extends('admin.layout.main') @section('admin')

Edit Request

ID: {{ $serviceRequest->id }}
Back to Details
@csrf @method('PUT')

Contact Information

Full Name

{{ $contactInfo['name'] ?? 'N/A' }}

Email

{{ $contactInfo['email'] ?? 'N/A' }}

Phone

{{ $contactInfo['phone'] ?? 'N/A' }}

Company

{{ $contactInfo['company'] ?? 'N/A' }}

Business Information

Services Requested ({{ count($servicesData) }})

@foreach($servicesData as $index => $service)

{{ $service['name'] ?? 'Unnamed Service' }}

@if($service['description'] ?? false)

{{ Str::limit($service['description'], 80) }}

@endif
@if($service['price'] ?? false) {{ number_format($service['price'], 0) }} SR @endif
@endforeach

Request Settings

Admin Notes

Cancel
@endsection