@extends('themes.basic.user.layouts.app') @section('title', translate('Settings', 'settings')) @section('content') @include('themes.basic.user.settings.includes.links')
{{ translate('Withdrawal Details', 'settings') }}
@csrf
@foreach ($withdrawalMethods as $withdrawalMethod) @if ($withdrawalMethod->description)
{!! $withdrawalMethod->description !!}
@endif @endforeach
@if ($withdrawalMethods->count() > 0)
{{ translate('Withdrawal Methods', 'settings') }}
@foreach ($withdrawalMethods as $withdrawalMethod) @endforeach
{{ translate('Withdrawal Method', 'settings') }} {{ translate('Minimum Amount', 'settings') }}
{{ $withdrawalMethod->name }} {{ priceSymbol($withdrawalMethod->minimum) }}
@endif
@endsection