@extends('layouts.user') @section('title') @lang('Edit Invoice') @endsection @section('breadcrumb') @lang('Edit Invoice') @endsection @push('extra') @lang(' Back') @endpush @section('content')
@csrf
@lang('Inoice To')
@lang('Recipient Email')
@lang('Address')
@lang('Select Currency')

@foreach ($invoice->items as $value)
@if ($loop->first)
@lang('Item name')
@endif
@if ($loop->first)
@lang('Amount')
@endif
@if ($loop->first)
 
@else
@endif
@endforeach

@lang('Total Amount :')
{{numFormat($invoice->final_amount)}} {{$invoice->currency->code}}
 
@endsection @push('script') @endpush