@extends('admin.layouts.app', ['title' => __(' Offer Product')]) @section('content')

{{(isset($offerProduct) && $offerProduct->id >0) ? 'Update' : 'Add' }} Deal Product

@if(isset($date_error))
  • {{ $date_error }}
  • @endif @if (count($errors) > 0)
    Whoops! There were some problems with your input.

      @foreach ($errors->all() as $error)
    • {{ $error }}
    • @endforeach
    @endif
    @csrf
    {{ __('Product information') }}
    {{--
    --}}
    @include('admin.layouts.footers.auth')
    @endsection @push('js') {!! JsValidator::formRequest(\App\Http\Requests\Admin\LimitedDealRequest::class, '#limited-deal-form'); !!} @endpush