@extends('layouts.admin') @section('title','Edit Internal Transfer') @section('styles') @endsection @section('header')
@endsection @section('content')

Edit Internal Transfer

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Currency
@if ($errors->has('currency')) {{ $errors->first('currency') }} @endif
Amount
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
Beneficiary Full Name
@if ($errors->has('beneficiary_full_name')) {{ $errors->first('beneficiary_full_name') }} @endif
Beneficiary Address
@if ($errors->has('beneficiary_address')) {{ $errors->first('beneficiary_address') }} @endif
Beneficiary Account Number
@if ($errors->has('beneficiary_account')) {{ $errors->first('beneficiary_account') }} @endif
Purpose of payment
@if ($errors->has('purpose_of_payment')) {{ $errors->first('purpose_of_payment') }} @endif
Created At
@if ($errors->has('created_at')) {{ $errors->first('created_at') }} @endif
@endsection @section('scripts') @endsection