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

Create Payment

Create Payment Form

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

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

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

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

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

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

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

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

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

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

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