@extends('layouts.app') @section('title', 'Refund') @section('content')
@include('layouts.flash-messages')

Make a Refund!

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(!empty($ticket->due_amount))
@else
@endif
@endsection