@extends('layouts/contentLayoutMaster') @section('title', 'Create Incentive') @section('vendor-style') @endsection @section('page-style') @endsection @section('content')

Add New Incentive

@csrf
@error('region_id') {{ $message }} @enderror
@error('incentive_type') {{ $message }} @enderror
@error('source_type') {{ $message }} @enderror
@error('with_effective_date') {{ $message }} @enderror
@if ($errors->has('from[]')) {{ $errors->first('from[]') }} @endif
@if ($errors->has('to[]')) {{ $errors->first('to[]') }} @endif
@if ($errors->has('incentive_rate[]')) {{ $errors->first('incentive_rate[]') }} @endif
Cancel
@endsection @section('vendor-script') {{-- Vendor js files --}} {{-- {!! JsValidator::formRequest('App\Http\Requests\CreateIncentiveRequest', '#create_incentive_rates') !!} --}} @endsection @section('page-script') @endsection