{{-- --}} {{ trans('theme.button.open_dispute') }}

{!! Form::open(['route' => ['dispute.save', $order], 'data-toggle' => 'validator']) !!}
{{ config('system_settings.currency_symbol') ?: '$' }} {!! Form::number('refund_amount', 0, ['id' => 'refund_amount', 'class' => 'form-control', 'step' => 'any', 'max' => $order->grand_total, 'placeholder' => trans('theme.placeholder.refund_amount'), 'required']) !!}
@php $refunded_amt = $order->refundedSum(); @endphp @if ($refunded_amt > 0)

{{ trans('theme.alert') }}!

{!! trans('theme.help.order_refunded', ['amount' => get_formated_currency($refunded_amt, true, 2), 'total' => get_formated_currency($order->grand_total, true, 2)]) !!}
@else {!! trans('theme.help.customer_paid', ['amount' => get_formated_currency($order->grand_total, true, 2)]) !!} @endif
{!! Form::textarea('description', null, ['id' => 'description', 'class' => 'form-control', 'rows' => 3, 'placeholder' => trans('theme.placeholder.description'), 'required']) !!}
@lang('theme.help.return_goods_help_txt')
{!! Form::close() !!}
* {{ trans('theme.help.required_fields') }}