@extends('adminlte::page') @section('content') @section('content_header', __('admin.bank_payment_notification_approval'))
@if(count($errors) > 0)
@foreach($errors->all() as $error)

{{$error}}

@endforeach
@endif @if(Session::has('success'))

{{ Session::get('success') }}

@endif
@lang('admin.sender_name'): {{$payment_notification->sender_name}}
@lang('admin.bank_name'): {{$payment_notification->bank_name}}
@lang('admin.amount'): {{$settings['payment_currency_symbol']}}{{$payment_notification->price}}
@lang('admin.details'): {{$payment_notification->details}}
@lang('admin.approve') @lang('admin.deny') @lang('admin.send_email_to_member')
@endsection