{!! Form::open(['url' => 'admin/masterlist/transfer/' . $transfer->id]) !!} @if ($transfer->status == 'Accepted')

This will process the transfer of {!! $transfer->character->displayName !!} from {!! $transfer->sender->displayName !!} to {!! $transfer->recipient->displayName !!} immediately.

@else

This will approve the transfer of {!! $transfer->character->displayName !!} from {!! $transfer->sender->displayName !!} to {!! $transfer->recipient->displayName !!}, and it will be processed once the recipient accepts it.

@endif
{!! Form::label('cooldown', 'Cooldown (days)') !!} {!! Form::text('cooldown', $cooldown, ['class' => 'form-control']) !!}
{!! Form::submit('Approve', ['class' => 'btn btn-success', 'name' => 'action']) !!}
{!! Form::close() !!}