@extends('layouts.admin') @section('content') @push('css') {{-- dropzone --}} @endpush
Edit Incentive
@csrf
@if ($errors->has('incentive_name')) {{ $errors->first('incentive_name') }} @endif
@if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif
@foreach($incentive->incentive_events as $key => $incentive_event)
@if($key != 0) @endif
@endforeach
@push('alljs') @endpush @endsection