@extends('layouts.app') @section('title', 'Edit Offer') @section('content_header_title', 'Offers') @section('content_header_subtitle', 'Edit Offer') @section('content_body') @php $offer_details = isset($offer->offer_details) && !empty($offer->offer_details) ? json_decode($offer->offer_details, true) : []; @endphp

Edit Offer

@csrf
@if ($offer->template_type == 'single') @include('offers.forms.single_hotel', ['offer' => $offer]) @elseif ($offer->template_type == 'multiple') @include('offers.forms.multiple_hotels', ['offer' => $offer]) @endif

Add Page
{{--
--}} {{--

Live PDF Preview

--}}
@endsection @push('js') {{-- --}} @endpush