@extends('layouts/contentLayoutMaster') @section('title', 'Agri Services Payments') @section('vendor-style') @endsection @section('content') Edit Service Payment @if ($message = Session::get('success')) {{ $message }} @endif @if ($errorMessage = Session::get('errorMessage')) {{ $errorMessage }} @endif @csrf @method('PUT') Select Agri Services Category * Select Category @foreach($categories as $category) agri_services_category_id == $category->id) {{ 'selected' }} @endif value="{{$category->id}}">{{$category->name}} @endforeach @error('agri_services_category_id') {{ $message }} @enderror Types * @foreach($types as $type) agri_services_type_id == $type->id) {{ 'selected' }} @endif value="{{$type->id}}">{{$type->name}} @endforeach @error('agri_services_type_id') {{ $message }} @enderror Select Supplier * Select Supplier @foreach($suppliers as $supplier) id == $agri_services_payment->supplier_id ) {{ 'selected'}} @endif value="{{$supplier->id}}">{{$supplier->code}} || {{$supplier->name}} @endforeach @error('supplier_id') {{ $message }} @enderror Advance Amount * @error('advance') {{ $message }} @enderror No Of Installments * @error('no_of_installments') {{ $message }} @enderror Each Installment Amount * @error('each_installment_amount') {{ $message }} @enderror Submit Reset Cancel @endsection @section('vendor-script') {{-- --}} @endsection @section('page-script') @endsection