@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.invoice.title_singular') }}
@method('POST') @csrf
@if($errors->has('tenant'))
{{ $errors->first('tenant') }}
@endif {{ trans('cruds.invoice.fields.tenant_helper') }}
@if($errors->has('billing_for'))
{{ $errors->first('billing_for') }}
@endif {{ trans('cruds.invoice.fields.billing_for_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.invoice.fields.amount_helper') }}
@if($errors->has('due'))
{{ $errors->first('due') }}
@endif {{ trans('cruds.invoice.fields.due_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.invoice.fields.status_helper') }}
@endsection