@if($offer->type == 'sell') {!! __('HOW MUCH DO YOU WANT TO BUY?') !!} @else {!! __('HOW MUCH DO YOU WANT TO SELL?') !!} @endif
{{__('This is one of your offers!')}}
{{__('You have :amount on your :coin wallet!', ['amount' => Auth::user()->getCoinAvailable($offer->coin), 'coin' => get_coin($offer->coin)])}}
@endif{{__('INFORMATION')}}
{!! __('Your amount should be between :min_amount and :max_amount', ['min_amount' => "{$min_amount}", 'max_amount' => "{$max_amount}"]) !!}
@php $worth = (100 - $offer->profit_margin); @endphp
{!! __('You will get :worth% worth of your money in return for this trade.', ['worth' => "{$worth}"]) !!}
{!! __('Rate per :coin is :rate. You can buy any fraction', ['rate' => "{$rate_formatted}",'coin' => get_coin($offer->coin)]) !!}
{{__('IMPORTANT')}}
{!! __('The buyer of this trade has a time limit of :deadline minutes to pay for the trade before the trade is cancelled by the system.', ['deadline' => "{$offer->deadline}"]) !!}
{!! __('Trade will not auto-cancel when buyer has marked trade as paid. After that buyer has to wait for seller to release coin.') !!}
{{__('Offer Terms By :user', ['user' => $offer->user->name])}}
{!! nl2br(e($offer->terms)) !!}