@extends('admin.partials.layout') @section('css') @endsection @section('content')

Edit Payment

Edit Payment Form

@csrf @method('PUT')
@if($errors->has('date'))

{{ $errors->first('date') }}

@endif
@if($errors->has('agreement'))

{{ $errors->first('agreement') }}

@endif
@if($errors->has('type'))

{{ $errors->first('type') }}

@endif
debit > 0) value="{{$model->debit}}" @endif @if($model->credit > 0) value="{{$model->credit}}" @endif name="amount" class="form-control" placeholder="Amount" /> @if($errors->has('amount'))

{{ $errors->first('amount') }}

@endif
@if($errors->has('description'))

{{ $errors->first('description') }}

@endif
@endsection @section('js') @endsection