@extends('layouts.app') @section('title', __('New Income')) @section('content')
{{ __('New Income') }}
@csrf
@if($errors->has('invoice')) {{ $errors->first('invoice') }} @endif
@if($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if($errors->has('discount')) {{ $errors->first('discount') }} @endif
@endsection @section('scripts') @stop