@extends('layouts.app') @section('title') Add Dealer Payment @stop @section('breadcrumb') @stop @section('css') @stop @section('content')
{{csrf_field()}}
@if($errors->any())

Errors

    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif

Dealer Payment Information


@if ($errors->has('dealer_id')) {{ $errors->first('dealer_id') }} @endif


@if ($errors->has('payment_mode')) {{ $errors->first('payment_mode') }} @endif
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif

@if ($errors->has('date')) {{ $errors->first('date') }} @endif
@stop @section('js') @stop