@extends('backend.layout.main') @push('css') @endpush @section('content')

{{ __('db.edit_service_job') }} — {{ $job->reference_no }}

{{ __('db.back_to_job') }}
@csrf @method('PUT') {{-- ════ SECTION 1: Basic Info ════ --}}

{{ __('db.basic_information') }}

{{-- ════ SECTION 2: Device Details ════ --}} @if ($job->service_type === 'device' && $job->device)
📱 {{ __('db.device_details') }}
@endif {{-- ════ SECTION 3: Vehicle Details ════ --}} @if ($job->service_type === 'vehicle' && $job->vehicle)
🚗 {{ __('db.vehicle_details') }}
@endif
{{ __('db.Cancel') }}
@endsection @push('scripts') @endpush