@extends('layouts.vat') @section('content') @if (session('status'))
{{ session('status') }}
@endif @if (session('info'))
{{ session('info') }}
@endif @if (session('warning'))
{{ session('warning') }}
@endif
1

Details of the buyer

2

Details of the seller

3

Other details

{{ csrf_field() }} @for($index; $index<$count; $index++) @endfor

Details of the Buyer

*
* @if ($errors->has('buyerID'))
{{ $errors->first('buyerID') }}
@endif
*
*
*
Close

Details of the Seller

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

Other details

* @if ($errors->has('purchaseprice'))
{{ $errors->first('purchaseprice') }}
@endif
@if ($errors->has('purchasevat'))
{{ $errors->first('purchasevat') }}
@endif
*
*
* @if ($errors->has('serial'))
{{ $errors->first('serial') }}
@endif
*
{{--
*
--}}
@endsection