@extends('layouts.app') @section('content')

My Documents

You may Edit and Delete documents that you have not yet purchased by clicking the buttons to the right of the document name.

For purchased documents, you may Edit them if you need to update information, and you may Download them to your computer for printing and signing.


@if(session()->has('success'))
{{ session()->get('success') }}
@endif
Documents for {{ Auth::user()->name }}
    @foreach ($testaments as $testament)
  • New Document
    Premium Will
    @if($testament->enduring_power_of_attorney_and_enduring_guardianship == 1) Enduring Power of Attorney and Guardianship
    @endif
    Edit
    @csrf @method('DELETE')
    Purchase
  • @endforeach
@endsection