@extends('layouts.report')
@section('content')
{{--Title--}}
{{--Employment--}}
@if(count($employment))
@include('reports.tax-return.forms.employment')
@endif
{{--Self employed--}}
@if(count($selfEmployed))
@include('reports.tax-return.forms.self-employed')
@endif
{{--Partnership--}}
@if(count($partnership))
@include('reports.tax-return.forms.partnership')
@endif
@if(count($otherMainIncome))
{{--Foreign Income--}}
@include('reports.tax-return.forms.foreign-income')
{{--Capital gain--}}
@include('reports.tax-return.forms.capital-gain')
{{--Minister religion--}}
@include('reports.tax-return.forms.minister-religion')
{{--Trust--}}
@include('reports.tax-return.forms.trust')
@endif
{{--LLoys underwriter--}}
@if(count($lloysUnderwriter))
@include('reports.tax-return.forms.lloyds-underwriter')
@endif
{{--Uk Property--}}
@if(count($ukProperty))
@include('reports.tax-return.forms.uk-property')
@endif
{{--Resident remittance--}}
@if(count($nonResident))
@include('reports.tax-return.forms.non-resident')
@endif
{{--Interest Dividends--}}
@if(count($interestDividend))
@include('reports.tax-return.forms.interest-dividend')
@endif
{{--Other uk incmoe--}}
@if(count($otherUkIncome))
@include('reports.tax-return.forms.other-uk-income')
@endif
{{--Life insurance gains--}}
@if(count($lifeInsuranceGain))
@include('reports.tax-return.forms.life-insurance')
@endif
{{--Uk pensions--}}
@if(count($ukPension))
@include('reports.tax-return.forms.uk-pension')
@endif
{{--Interest from gilt--}}
@if(count($interestGiltEdged))
@include('reports.tax-return.forms.interest-from-gilt')
@endif
{{--Stock dividents--}}
@if(count($stockDevidend))
@include('reports.tax-return.forms.stock-divident')
@endif
{{--Charitable giving--}}
@if(count($charitable))
@include('reports.tax-return.forms.charitable-giving')
@endif
{{--Other tax reliefs--}}
@if(count($relief))
@include('reports.tax-return.forms.relief')
@endif
{{--Pension schemes contribution--}}
@if(count($pension))
@include('reports.tax-return.forms.pension-schemes-contribution')
@endif
@endsection