@extends('master') @section('content')
@include('admin.layout.breadcrumbs', [ 'title' => __('Edit Slot Booking'), 'headerData' => __('Slot Booking') , 'url' => 'slot-bookings' , ])

{{ __('Edit Slot Booking') }}

@php $fields = [ 'company_name' => 'Company Name', 'ntn_number' => 'NTN Number', 'sntn' => 'SNTN Number', 'address' => 'Address', 'company_email' => 'Company Email', 'company_phone' => 'Company Phone', 'contact_person_name' => 'Person Name', 'contact_person_designation' => 'Person Designation', 'contact_person_mobile' => 'Person Phone', 'product_to_exhibit' => 'Product To Exhibit', 'head_of_organization' => 'Head of Organization', 'head_of_organization_designation' => 'Organization Designation', 'description' => 'Description', 'size' => 'Size', 'participation_type' => 'Participation Type', 'booking_source' => 'Booking Source' ]; @endphp @foreach($fields as $field => $label)
{{ __($label) }}

{{ $slotbooking->$field ?? '-' }}

@endforeach
{{ __('Logo') }}
Logo
{{ __('Signature') }}
Signature
@csrf @method('PUT')
@error('sales_person_assignment')
{{ $message }}
@enderror
@error('rate')
{{ $message }}
@enderror
@error('total_amount')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
@endsection