@extends('frontend.layouts.user.index')
@section('title', __('Edit Recipient'))
@push('styles')
@endpush
@section('content')
@include('frontend.user.remittance.partials._page_header', [
'rmtPageTitle' => __('Edit Recipient'),
'rmtPageSubtitle' => $beneficiary->full_name . ' · ' . $beneficiary->country_code . ' · ' . $beneficiary->payout_method->label(),
'rmtPageIcon' => 'fas fa-user-pen',
'rmtCurrentPage' => 'beneficiaries-edit',
])
@include('frontend.user.remittance.beneficiaries._form', [
'action' => route('user.beneficiaries.update', $beneficiary),
'method' => 'PUT',
'beneficiary' => $beneficiary,
'payoutMethods' => $payoutMethods,
])
@endsection